From bd70cabea1fc5bc11cdd3ae9c5c4260bacb62e7f Mon Sep 17 00:00:00 2001 From: Weidong Xu Date: Mon, 7 Mar 2022 12:07:51 +0800 Subject: [PATCH] mgmt, upgrade redis (#27470) * upgrade redis * manual code for ConfigurationUtils * test and record --- sdk/resourcemanager/api-specs.json | 3 +- .../azure-resourcemanager-redis/CHANGELOG.md | 8 +- .../azure-resourcemanager-redis/pom.xml | 1 + .../fluent/AsyncOperationStatusClient.java | 68 + .../redis/fluent/FirewallRulesClient.java | 25 +- .../redis/fluent/LinkedServersClient.java | 45 +- .../redis/fluent/OperationsClient.java | 6 +- .../redis/fluent/PatchSchedulesClient.java | 29 +- .../PrivateEndpointConnectionsClient.java | 40 +- .../fluent/PrivateLinkResourcesClient.java | 9 +- .../redis/fluent/RedisClient.java | 122 +- .../redis/fluent/RedisManagementClient.java | 7 + .../redis/fluent/models/OperationInner.java | 4 - .../fluent/models/OperationStatusInner.java | 111 + .../PrivateEndpointConnectionInner.java | 4 - .../PrivateEndpointConnectionProperties.java | 7 +- .../models/PrivateLinkResourceInner.java | 4 - .../models/PrivateLinkResourceProperties.java | 4 - .../fluent/models/RedisAccessKeysInner.java | 4 - .../fluent/models/RedisCreateProperties.java | 23 +- .../fluent/models/RedisFirewallRuleInner.java | 7 +- .../models/RedisFirewallRuleProperties.java | 9 +- .../models/RedisForceRebootResponseInner.java | 4 - .../RedisLinkedServerCreateProperties.java | 11 +- .../models/RedisLinkedServerProperties.java | 4 - .../RedisLinkedServerWithPropertiesInner.java | 4 - .../models/RedisPatchScheduleInner.java | 22 +- .../fluent/models/RedisPropertiesInner.java | 7 +- .../fluent/models/RedisResourceInner.java | 50 +- .../fluent/models/RedisUpdateProperties.java | 7 +- .../redis/fluent/models/ScheduleEntries.java | 7 +- .../models/UpgradeNotificationInner.java | 4 - .../AsyncOperationStatusClientImpl.java | 215 + .../implementation/ConfigurationUtils.java | 160 + .../FirewallRulesClientImpl.java | 49 +- .../LinkedServersClientImpl.java | 79 +- .../implementation/OperationsClientImpl.java | 23 +- .../PatchSchedulesClientImpl.java | 55 +- .../PrivateEndpointConnectionsClientImpl.java | 66 +- .../PrivateLinkResourcesClientImpl.java | 21 +- .../redis/implementation/RedisCacheImpl.java | 22 +- .../redis/implementation/RedisClientImpl.java | 215 +- .../RedisManagementClientImpl.java | 19 +- .../CheckNameAvailabilityParameters.java | 9 +- .../redis/models/ErrorAdditionalInfo.java | 50 + .../redis/models/ErrorDetail.java | 102 + .../redis/models/ExportRdbParameters.java | 9 +- .../redis/models/ImportRdbParameters.java | 7 +- .../redis/models/ManagedServiceIdentity.java | 141 + .../models/ManagedServiceIdentityType.java | 41 + .../models/NotificationListResponse.java | 4 - .../redis/models/OperationDisplay.java | 4 - .../redis/models/OperationListResult.java | 4 - .../redis/models/OperationStatusResult.java | 244 + .../redis/models/PrivateEndpoint.java | 4 - .../PrivateEndpointConnectionListResult.java | 4 - .../models/PrivateLinkResourceListResult.java | 4 - .../PrivateLinkServiceConnectionState.java | 4 - .../redis/models/RedisCommonProperties.java | 14 +- ...disCommonPropertiesRedisConfiguration.java | 395 ++ .../redis/models/RedisCreateParameters.java | 50 +- .../RedisFirewallRuleCreateParameters.java | 4 - .../models/RedisFirewallRuleListResult.java | 4 - .../redis/models/RedisInstanceDetails.java | 4 - .../redis/models/RedisLinkedServer.java | 4 - .../RedisLinkedServerCreateParameters.java | 7 +- .../RedisLinkedServerWithPropertiesList.java | 4 - .../redis/models/RedisListResult.java | 4 - .../models/RedisPatchScheduleListResult.java | 4 - .../redis/models/RedisRebootParameters.java | 4 - .../models/RedisRegenerateKeyParameters.java | 7 +- .../redis/models/RedisUpdateParameters.java | 37 +- .../redis/models/ScheduleEntry.java | 7 +- .../resourcemanager/redis/models/Sku.java | 9 +- .../redis/models/UserAssignedIdentity.java | 51 + .../redis/RedisCacheOperationsTests.java | 9 +- .../RedisConfigurationTests.java | 174 + .../test/java/com/azure/test/EnumTest.java | 17 - ...eOperationsTests.canCRUDLinkedServers.json | 4846 ++++++++++------- ...acheOperationsTests.canCRUDRedisCache.json | 4233 +++++++------- ...rationsTests.canCreateRedisWithRdbAof.json | 1552 +++--- ...OperationsTests.canRedisVersionUpdate.json | 787 ++- ...CacheSampleTests.testManageRedisCache.json | 362 +- .../AsyncOperationStatusGetSamples.java | 27 + .../FirewallRulesCreateOrUpdateSamples.java | 33 + .../generated/FirewallRulesDeleteSamples.java | 27 + .../generated/FirewallRulesGetSamples.java | 27 + .../generated/FirewallRulesListSamples.java | 22 + .../generated/LinkedServerCreateSamples.java | 38 + .../generated/LinkedServerDeleteSamples.java | 27 + .../generated/LinkedServerGetSamples.java | 27 + .../generated/LinkedServerListSamples.java | 22 + .../PatchSchedulesCreateOrUpdateSamples.java | 46 + .../PatchSchedulesDeleteSamples.java | 28 + .../generated/PatchSchedulesGetSamples.java | 28 + ...chSchedulesListByRedisResourceSamples.java | 27 + ...ivateEndpointConnectionsDeleteSamples.java | 27 + .../PrivateEndpointConnectionsGetSamples.java | 27 + ...PrivateEndpointConnectionsListSamples.java | 27 + .../PrivateEndpointConnectionsPutSamples.java | 39 + ...eLinkResourcesListByRedisCacheSamples.java | 27 + .../RedisCheckNameAvailabilitySamples.java | 30 + .../redis/generated/RedisCreateSamples.java | 66 + .../redis/generated/RedisDeleteSamples.java | 22 + .../generated/RedisExportDataSamples.java | 35 + .../generated/RedisForceRebootSamples.java | 37 + .../RedisGetByResourceGroupSamples.java | 27 + .../generated/RedisImportDataSamples.java | 35 + .../RedisListByResourceGroupSamples.java | 22 + .../redis/generated/RedisListKeysSamples.java | 22 + .../redis/generated/RedisListSamples.java | 22 + .../RedisListUpgradeNotificationsSamples.java | 27 + .../generated/RedisRegenerateKeySamples.java | 30 + .../redis/generated/RedisUpdateSamples.java | 32 + .../resourcemanager/PrivateLinkTests.java | 8 +- .../AzureResourceManagerTests.testRedis.json | 252 +- ...ateLinkTests.testPrivateEndpointRedis.json | 1195 ++++ sdk/resourcemanager/credcheck.js | 2 + 118 files changed, 10985 insertions(+), 6209 deletions(-) create mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/AsyncOperationStatusClient.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/OperationStatusInner.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/AsyncOperationStatusClientImpl.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/ConfigurationUtils.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ErrorAdditionalInfo.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ErrorDetail.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ManagedServiceIdentity.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ManagedServiceIdentityType.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/OperationStatusResult.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisCommonPropertiesRedisConfiguration.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/UserAssignedIdentity.java create mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/resourcemanager/redis/implementation/RedisConfigurationTests.java delete mode 100644 sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/test/EnumTest.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/AsyncOperationStatusGetSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesCreateOrUpdateSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesDeleteSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesGetSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesListSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerCreateSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerDeleteSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerGetSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerListSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesCreateOrUpdateSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesDeleteSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesGetSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesListByRedisResourceSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsDeleteSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsGetSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsListSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsPutSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateLinkResourcesListByRedisCacheSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisCheckNameAvailabilitySamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisCreateSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisDeleteSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisExportDataSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisForceRebootSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisGetByResourceGroupSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisImportDataSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListByResourceGroupSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListKeysSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListUpgradeNotificationsSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisRegenerateKeySamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisUpdateSamples.java create mode 100644 sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/PrivateLinkTests.testPrivateEndpointRedis.json diff --git a/sdk/resourcemanager/api-specs.json b/sdk/resourcemanager/api-specs.json index 0a424422c4c54..0c5f6c7cb1972 100644 --- a/sdk/resourcemanager/api-specs.json +++ b/sdk/resourcemanager/api-specs.json @@ -347,7 +347,8 @@ "dir": "azure-resourcemanager-redis", "source": "specification/redis/resource-manager/readme.md", "package": "com.azure.resourcemanager.redis", - "args": "--tag=package-2020-12" + "args": "--tag=package-2021-06 --rename-model=ErrorDetailAutoGenerated:ErrorDetail", + "note": "run RedisConfigurationTests.generateConfigurationUtils" }, "relay": { "dir": "azure-resourcemanager-relay", diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/CHANGELOG.md b/sdk/resourcemanager/azure-resourcemanager-redis/CHANGELOG.md index 69fad11dd85d0..bfa500466ad55 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/CHANGELOG.md +++ b/sdk/resourcemanager/azure-resourcemanager-redis/CHANGELOG.md @@ -2,13 +2,11 @@ ## 2.13.0-beta.1 (Unreleased) -### Features Added - -### Breaking Changes +### Other Changes -### Bugs Fixed +#### Dependency Updates -### Other Changes +- Updated `api-version` to `2021-06-01`. ## 2.12.0 (2022-02-14) diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/pom.xml b/sdk/resourcemanager/azure-resourcemanager-redis/pom.xml index 17388719c5f86..dc10ab880d0f1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-redis/pom.xml @@ -49,6 +49,7 @@ false + true diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/AsyncOperationStatusClient.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/AsyncOperationStatusClient.java new file mode 100644 index 0000000000000..2195dfcafe09a --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/AsyncOperationStatusClient.java @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.fluent; + +import com.azure.core.annotation.ReturnType; +import com.azure.core.annotation.ServiceMethod; +import com.azure.core.http.rest.Response; +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.fluent.models.OperationStatusInner; +import reactor.core.publisher.Mono; + +/** An instance of this class provides access to all the operations defined in AsyncOperationStatusClient. */ +public interface AsyncOperationStatusClient { + /** + * For checking the ongoing status of an operation. + * + * @param location The location at which operation was triggered. + * @param operationId The ID of asynchronous operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return asynchronous operation status along with {@link Response} on successful completion of {@link Mono}. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + Mono> getWithResponseAsync(String location, String operationId); + + /** + * For checking the ongoing status of an operation. + * + * @param location The location at which operation was triggered. + * @param operationId The ID of asynchronous operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return asynchronous operation status on successful completion of {@link Mono}. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + Mono getAsync(String location, String operationId); + + /** + * For checking the ongoing status of an operation. + * + * @param location The location at which operation was triggered. + * @param operationId The ID of asynchronous operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return asynchronous operation status. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + OperationStatusInner get(String location, String operationId); + + /** + * For checking the ongoing status of an operation. + * + * @param location The location at which operation was triggered. + * @param operationId The ID of asynchronous operation. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return asynchronous operation status along with {@link Response}. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + Response getWithResponse(String location, String operationId, Context context); +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/FirewallRulesClient.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/FirewallRulesClient.java index 3ded58a9d2641..3ceaf29484434 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/FirewallRulesClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/FirewallRulesClient.java @@ -23,7 +23,7 @@ public interface FirewallRulesClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all firewall rules in the specified redis cache. + * @return all firewall rules in the specified redis cache as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedFlux listAsync(String resourceGroupName, String cacheName); @@ -36,7 +36,7 @@ public interface FirewallRulesClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all firewall rules in the specified redis cache. + * @return all firewall rules in the specified redis cache as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable list(String resourceGroupName, String cacheName); @@ -50,7 +50,7 @@ public interface FirewallRulesClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all firewall rules in the specified redis cache. + * @return all firewall rules in the specified redis cache as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable list(String resourceGroupName, String cacheName, Context context); @@ -66,7 +66,7 @@ public interface FirewallRulesClient { * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return a firewall rule on a redis cache has a name, and describes a contiguous range of IP addresses permitted - * to connect. + * to connect along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> createOrUpdateWithResponseAsync( @@ -83,7 +83,7 @@ Mono> createOrUpdateWithResponseAsync( * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return a firewall rule on a redis cache has a name, and describes a contiguous range of IP addresses permitted - * to connect. + * to connect on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono createOrUpdateAsync( @@ -118,7 +118,7 @@ RedisFirewallRuleInner createOrUpdate( * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return a firewall rule on a redis cache has a name, and describes a contiguous range of IP addresses permitted - * to connect. + * to connect along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response createOrUpdateWithResponse( @@ -137,7 +137,8 @@ Response createOrUpdateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single firewall rule in a specified redis cache. + * @return a single firewall rule in a specified redis cache along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> getWithResponseAsync( @@ -152,7 +153,7 @@ Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single firewall rule in a specified redis cache. + * @return a single firewall rule in a specified redis cache on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono getAsync(String resourceGroupName, String cacheName, String ruleName); @@ -181,7 +182,7 @@ Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single firewall rule in a specified redis cache. + * @return a single firewall rule in a specified redis cache along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response getWithResponse( @@ -196,7 +197,7 @@ Response getWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> deleteWithResponseAsync(String resourceGroupName, String cacheName, String ruleName); @@ -210,7 +211,7 @@ Response getWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono deleteAsync(String resourceGroupName, String cacheName, String ruleName); @@ -238,7 +239,7 @@ Response getWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response deleteWithResponse(String resourceGroupName, String cacheName, String ruleName, Context context); diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/LinkedServersClient.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/LinkedServersClient.java index 42395d0e366e9..062f5617263a5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/LinkedServersClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/LinkedServersClient.java @@ -31,7 +31,8 @@ public interface LinkedServersClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return response to put/get linked server (with properties) for Redis cache along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> createWithResponseAsync( @@ -47,9 +48,10 @@ Mono>> createWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return the {@link PollerFlux} for polling of response to put/get linked server (with properties) for Redis + * cache. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, RedisLinkedServerWithPropertiesInner> beginCreateAsync( String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParameters parameters); @@ -63,9 +65,10 @@ PollerFlux, RedisLinkedServerWi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return the {@link SyncPoller} for polling of response to put/get linked server (with properties) for Redis + * cache. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, RedisLinkedServerWithPropertiesInner> beginCreate( String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParameters parameters); @@ -80,9 +83,10 @@ SyncPoller, RedisLinkedServerWi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return the {@link SyncPoller} for polling of response to put/get linked server (with properties) for Redis + * cache. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, RedisLinkedServerWithPropertiesInner> beginCreate( String resourceGroupName, String name, @@ -100,7 +104,8 @@ SyncPoller, RedisLinkedServerWi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return response to put/get linked server (with properties) for Redis cache on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono createAsync( @@ -152,7 +157,7 @@ RedisLinkedServerWithPropertiesInner create( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> deleteWithResponseAsync(String resourceGroupName, String name, String linkedServerName); @@ -166,7 +171,7 @@ RedisLinkedServerWithPropertiesInner create( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono deleteAsync(String resourceGroupName, String name, String linkedServerName); @@ -194,7 +199,7 @@ RedisLinkedServerWithPropertiesInner create( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response deleteWithResponse(String resourceGroupName, String name, String linkedServerName, Context context); @@ -208,7 +213,8 @@ RedisLinkedServerWithPropertiesInner create( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the detailed information about a linked server of a redis cache (requires Premium SKU). + * @return the detailed information about a linked server of a redis cache (requires Premium SKU) along with {@link + * Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> getWithResponseAsync( @@ -223,7 +229,8 @@ Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the detailed information about a linked server of a redis cache (requires Premium SKU). + * @return the detailed information about a linked server of a redis cache (requires Premium SKU) on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono getAsync(String resourceGroupName, String name, String linkedServerName); @@ -252,7 +259,8 @@ Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the detailed information about a linked server of a redis cache (requires Premium SKU). + * @return the detailed information about a linked server of a redis cache (requires Premium SKU) along with {@link + * Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response getWithResponse( @@ -266,7 +274,8 @@ Response getWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the list of linked servers associated with this redis cache (requires Premium SKU). + * @return the list of linked servers associated with this redis cache (requires Premium SKU) as paginated response + * with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedFlux listAsync(String resourceGroupName, String name); @@ -279,7 +288,8 @@ Response getWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the list of linked servers associated with this redis cache (requires Premium SKU). + * @return the list of linked servers associated with this redis cache (requires Premium SKU) as paginated response + * with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable list(String resourceGroupName, String name); @@ -293,7 +303,8 @@ Response getWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the list of linked servers associated with this redis cache (requires Premium SKU). + * @return the list of linked servers associated with this redis cache (requires Premium SKU) as paginated response + * with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable list(String resourceGroupName, String name, Context context); diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/OperationsClient.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/OperationsClient.java index 7e1623757de1f..6e4fe53846e8e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/OperationsClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/OperationsClient.java @@ -18,7 +18,7 @@ public interface OperationsClient { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return result of the request to list REST API operations. + * @return result of the request to list REST API operations as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedFlux listAsync(); @@ -28,7 +28,7 @@ public interface OperationsClient { * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return result of the request to list REST API operations. + * @return result of the request to list REST API operations as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable list(); @@ -40,7 +40,7 @@ public interface OperationsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return result of the request to list REST API operations. + * @return result of the request to list REST API operations as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable list(Context context); diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/PatchSchedulesClient.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/PatchSchedulesClient.java index 9d7e2d3fb3046..7ec9fa39b4b85 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/PatchSchedulesClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/PatchSchedulesClient.java @@ -24,7 +24,8 @@ public interface PatchSchedulesClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all patch schedules in the specified redis cache (there is only one). + * @return all patch schedules in the specified redis cache (there is only one) as paginated response with {@link + * PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedFlux listByRedisResourceAsync(String resourceGroupName, String cacheName); @@ -37,7 +38,8 @@ public interface PatchSchedulesClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all patch schedules in the specified redis cache (there is only one). + * @return all patch schedules in the specified redis cache (there is only one) as paginated response with {@link + * PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable listByRedisResource(String resourceGroupName, String cacheName); @@ -51,7 +53,8 @@ public interface PatchSchedulesClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all patch schedules in the specified redis cache (there is only one). + * @return all patch schedules in the specified redis cache (there is only one) as paginated response with {@link + * PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable listByRedisResource( @@ -67,7 +70,8 @@ PagedIterable listByRedisResource( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get patch schedules for Redis cache. + * @return response to put/get patch schedules for Redis cache along with {@link Response} on successful completion + * of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> createOrUpdateWithResponseAsync( @@ -83,7 +87,7 @@ Mono> createOrUpdateWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get patch schedules for Redis cache. + * @return response to put/get patch schedules for Redis cache on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono createOrUpdateAsync( @@ -116,7 +120,7 @@ RedisPatchScheduleInner createOrUpdate( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get patch schedules for Redis cache. + * @return response to put/get patch schedules for Redis cache along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response createOrUpdateWithResponse( @@ -135,7 +139,7 @@ Response createOrUpdateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> deleteWithResponseAsync(String resourceGroupName, String name, DefaultName defaultParameter); @@ -149,7 +153,7 @@ Response createOrUpdateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono deleteAsync(String resourceGroupName, String name, DefaultName defaultParameter); @@ -177,7 +181,7 @@ Response createOrUpdateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response deleteWithResponse( @@ -192,7 +196,8 @@ Response deleteWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the patching schedule of a redis cache. + * @return the patching schedule of a redis cache along with {@link Response} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> getWithResponseAsync( @@ -207,7 +212,7 @@ Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the patching schedule of a redis cache. + * @return the patching schedule of a redis cache on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono getAsync(String resourceGroupName, String name, DefaultName defaultParameter); @@ -236,7 +241,7 @@ Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the patching schedule of a redis cache. + * @return the patching schedule of a redis cache along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response getWithResponse( diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/PrivateEndpointConnectionsClient.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/PrivateEndpointConnectionsClient.java index 923b11de75e47..516489f0446ed 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/PrivateEndpointConnectionsClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/PrivateEndpointConnectionsClient.java @@ -28,7 +28,8 @@ public interface PrivateEndpointConnectionsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of private endpoint connection associated with the specified storage account. + * @return list of private endpoint connection associated with the specified storage account as paginated response + * with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedFlux listAsync(String resourceGroupName, String cacheName); @@ -41,7 +42,8 @@ public interface PrivateEndpointConnectionsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of private endpoint connection associated with the specified storage account. + * @return list of private endpoint connection associated with the specified storage account as paginated response + * with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable list(String resourceGroupName, String cacheName); @@ -55,7 +57,8 @@ public interface PrivateEndpointConnectionsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of private endpoint connection associated with the specified storage account. + * @return list of private endpoint connection associated with the specified storage account as paginated response + * with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable list(String resourceGroupName, String cacheName, Context context); @@ -70,7 +73,8 @@ public interface PrivateEndpointConnectionsClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the specified private endpoint connection associated with the redis cache. + * @return the specified private endpoint connection associated with the redis cache along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> getWithResponseAsync( @@ -86,7 +90,8 @@ Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the specified private endpoint connection associated with the redis cache. + * @return the specified private endpoint connection associated with the redis cache on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono getAsync( @@ -119,7 +124,7 @@ PrivateEndpointConnectionInner get( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the specified private endpoint connection associated with the redis cache. + * @return the specified private endpoint connection associated with the redis cache along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response getWithResponse( @@ -136,7 +141,8 @@ Response getWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the Private Endpoint Connection resource along with {@link Response} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> putWithResponseAsync( @@ -156,9 +162,9 @@ Mono>> putWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the {@link PollerFlux} for polling of the Private Endpoint Connection resource. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, PrivateEndpointConnectionInner> beginPutAsync( String resourceGroupName, String cacheName, @@ -176,9 +182,9 @@ PollerFlux, PrivateEndpointConnection * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the {@link SyncPoller} for polling of the Private Endpoint Connection resource. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, PrivateEndpointConnectionInner> beginPut( String resourceGroupName, String cacheName, @@ -197,9 +203,9 @@ SyncPoller, PrivateEndpointConnection * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the {@link SyncPoller} for polling of the Private Endpoint Connection resource. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, PrivateEndpointConnectionInner> beginPut( String resourceGroupName, String cacheName, @@ -218,7 +224,7 @@ SyncPoller, PrivateEndpointConnection * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the Private Endpoint Connection resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono putAsync( @@ -279,7 +285,7 @@ PrivateEndpointConnectionInner put( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> deleteWithResponseAsync( @@ -295,7 +301,7 @@ Mono> deleteWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono deleteAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName); @@ -325,7 +331,7 @@ Mono> deleteWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response deleteWithResponse( diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/PrivateLinkResourcesClient.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/PrivateLinkResourcesClient.java index 640ecb6134352..43e2fe3e4c3ed 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/PrivateLinkResourcesClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/PrivateLinkResourcesClient.java @@ -21,7 +21,8 @@ public interface PrivateLinkResourcesClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the private link resources that need to be created for a redis cache. + * @return the private link resources that need to be created for a redis cache as paginated response with {@link + * PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedFlux listByRedisCacheAsync(String resourceGroupName, String cacheName); @@ -34,7 +35,8 @@ public interface PrivateLinkResourcesClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the private link resources that need to be created for a redis cache. + * @return the private link resources that need to be created for a redis cache as paginated response with {@link + * PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable listByRedisCache(String resourceGroupName, String cacheName); @@ -48,7 +50,8 @@ public interface PrivateLinkResourcesClient { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the private link resources that need to be created for a redis cache. + * @return the private link resources that need to be created for a redis cache as paginated response with {@link + * PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable listByRedisCache( diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/RedisClient.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/RedisClient.java index 5b634435a96f9..485dffeb94321 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/RedisClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/RedisClient.java @@ -42,7 +42,7 @@ public interface RedisClient * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> checkNameAvailabilityWithResponseAsync(CheckNameAvailabilityParameters parameters); @@ -55,7 +55,7 @@ public interface RedisClient * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono checkNameAvailabilityAsync(CheckNameAvailabilityParameters parameters); @@ -81,7 +81,7 @@ public interface RedisClient * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response checkNameAvailabilityWithResponse(CheckNameAvailabilityParameters parameters, Context context); @@ -95,7 +95,7 @@ public interface RedisClient * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return any upgrade notifications for a Redis cache. + * @return any upgrade notifications for a Redis cache as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedFlux listUpgradeNotificationsAsync( @@ -110,7 +110,7 @@ PagedFlux listUpgradeNotificationsAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return any upgrade notifications for a Redis cache. + * @return any upgrade notifications for a Redis cache as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable listUpgradeNotifications( @@ -126,7 +126,7 @@ PagedIterable listUpgradeNotifications( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return any upgrade notifications for a Redis cache. + * @return any upgrade notifications for a Redis cache as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable listUpgradeNotifications( @@ -141,7 +141,8 @@ PagedIterable listUpgradeNotifications( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> createWithResponseAsync( @@ -156,9 +157,9 @@ Mono>> createWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return the {@link PollerFlux} for polling of a single Redis item in List or Get Operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, RedisResourceInner> beginCreateAsync( String resourceGroupName, String name, RedisCreateParameters parameters); @@ -171,9 +172,9 @@ PollerFlux, RedisResourceInner> beginCreateAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return the {@link SyncPoller} for polling of a single Redis item in List or Get Operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, RedisResourceInner> beginCreate( String resourceGroupName, String name, RedisCreateParameters parameters); @@ -187,9 +188,9 @@ SyncPoller, RedisResourceInner> beginCreate( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return the {@link SyncPoller} for polling of a single Redis item in List or Get Operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, RedisResourceInner> beginCreate( String resourceGroupName, String name, RedisCreateParameters parameters, Context context); @@ -202,7 +203,7 @@ SyncPoller, RedisResourceInner> beginCreate( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono createAsync(String resourceGroupName, String name, RedisCreateParameters parameters); @@ -245,7 +246,8 @@ SyncPoller, RedisResourceInner> beginCreate( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> updateWithResponseAsync( @@ -260,7 +262,7 @@ Mono> updateWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono updateAsync(String resourceGroupName, String name, RedisUpdateParameters parameters); @@ -289,7 +291,7 @@ Mono> updateWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response updateWithResponse( @@ -303,7 +305,7 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> deleteWithResponseAsync(String resourceGroupName, String name); @@ -316,9 +318,9 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link PollerFlux} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, Void> beginDeleteAsync(String resourceGroupName, String name); /** @@ -329,9 +331,9 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginDelete(String resourceGroupName, String name); /** @@ -343,9 +345,9 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginDelete(String resourceGroupName, String name, Context context); /** @@ -356,7 +358,7 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono deleteAsync(String resourceGroupName, String name); @@ -394,7 +396,8 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a Redis cache (resource description). + * @return a Redis cache (resource description) along with {@link Response} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> getByResourceGroupWithResponseAsync(String resourceGroupName, String name); @@ -407,7 +410,7 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a Redis cache (resource description). + * @return a Redis cache (resource description) on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono getByResourceGroupAsync(String resourceGroupName, String name); @@ -434,7 +437,7 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a Redis cache (resource description). + * @return a Redis cache (resource description) along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response getByResourceGroupWithResponse(String resourceGroupName, String name, Context context); @@ -446,7 +449,7 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedFlux listByResourceGroupAsync(String resourceGroupName); @@ -458,7 +461,7 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable listByResourceGroup(String resourceGroupName); @@ -471,7 +474,7 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable listByResourceGroup(String resourceGroupName, Context context); @@ -481,7 +484,7 @@ Response updateWithResponse( * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all Redis caches in the specified subscription. + * @return all Redis caches in the specified subscription as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedFlux listAsync(); @@ -491,7 +494,7 @@ Response updateWithResponse( * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all Redis caches in the specified subscription. + * @return all Redis caches in the specified subscription as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable list(); @@ -503,7 +506,7 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all Redis caches in the specified subscription. + * @return all Redis caches in the specified subscription as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable list(Context context); @@ -516,7 +519,7 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> listKeysWithResponseAsync(String resourceGroupName, String name); @@ -529,7 +532,7 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono listKeysAsync(String resourceGroupName, String name); @@ -556,7 +559,7 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response listKeysWithResponse(String resourceGroupName, String name, Context context); @@ -570,7 +573,7 @@ Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> regenerateKeyWithResponseAsync( @@ -585,7 +588,7 @@ Mono> regenerateKeyWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono regenerateKeyAsync( @@ -615,7 +618,7 @@ Mono regenerateKeyAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response regenerateKeyWithResponse( @@ -631,7 +634,8 @@ Response regenerateKeyWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to force reboot for Redis cache. + * @return response to force reboot for Redis cache along with {@link Response} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono> forceRebootWithResponseAsync( @@ -647,7 +651,7 @@ Mono> forceRebootWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to force reboot for Redis cache. + * @return response to force reboot for Redis cache on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono forceRebootAsync( @@ -679,7 +683,7 @@ Mono forceRebootAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to force reboot for Redis cache. + * @return response to force reboot for Redis cache along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) Response forceRebootWithResponse( @@ -694,7 +698,7 @@ Response forceRebootWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> importDataWithResponseAsync( @@ -709,9 +713,9 @@ Mono>> importDataWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link PollerFlux} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, Void> beginImportDataAsync( String resourceGroupName, String name, ImportRdbParameters parameters); @@ -724,9 +728,9 @@ PollerFlux, Void> beginImportDataAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginImportData( String resourceGroupName, String name, ImportRdbParameters parameters); @@ -740,9 +744,9 @@ SyncPoller, Void> beginImportData( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginImportData( String resourceGroupName, String name, ImportRdbParameters parameters, Context context); @@ -755,7 +759,7 @@ SyncPoller, Void> beginImportData( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono importDataAsync(String resourceGroupName, String name, ImportRdbParameters parameters); @@ -796,7 +800,7 @@ SyncPoller, Void> beginImportData( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono>> exportDataWithResponseAsync( @@ -811,9 +815,9 @@ Mono>> exportDataWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link PollerFlux} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) PollerFlux, Void> beginExportDataAsync( String resourceGroupName, String name, ExportRdbParameters parameters); @@ -826,9 +830,9 @@ PollerFlux, Void> beginExportDataAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginExportData( String resourceGroupName, String name, ExportRdbParameters parameters); @@ -842,9 +846,9 @@ SyncPoller, Void> beginExportData( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) SyncPoller, Void> beginExportData( String resourceGroupName, String name, ExportRdbParameters parameters, Context context); @@ -857,7 +861,7 @@ SyncPoller, Void> beginExportData( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) Mono exportDataAsync(String resourceGroupName, String name, ExportRdbParameters parameters); diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/RedisManagementClient.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/RedisManagementClient.java index 1e1ed262b97fc..86f609079acba 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/RedisManagementClient.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/RedisManagementClient.java @@ -93,4 +93,11 @@ public interface RedisManagementClient { * @return the PrivateLinkResourcesClient object. */ PrivateLinkResourcesClient getPrivateLinkResources(); + + /** + * Gets the AsyncOperationStatusClient object to access its operations. + * + * @return the AsyncOperationStatusClient object. + */ + AsyncOperationStatusClient getAsyncOperationStatus(); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/OperationInner.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/OperationInner.java index 8e94ffc2c008e..6da4252daf7f3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/OperationInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/OperationInner.java @@ -5,16 +5,12 @@ package com.azure.resourcemanager.redis.fluent.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.models.OperationDisplay; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** REST API operation. */ @Fluent public final class OperationInner { - @JsonIgnore private final ClientLogger logger = new ClientLogger(OperationInner.class); - /* * Operation name: {provider}/{resource}/{operation} */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/OperationStatusInner.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/OperationStatusInner.java new file mode 100644 index 0000000000000..124f04b22d48e --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/OperationStatusInner.java @@ -0,0 +1,111 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.fluent.models; + +import com.azure.core.annotation.Fluent; +import com.azure.resourcemanager.redis.models.ErrorDetail; +import com.azure.resourcemanager.redis.models.OperationStatusResult; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.time.OffsetDateTime; +import java.util.List; +import java.util.Map; + +/** Asynchronous operation status. */ +@Fluent +public final class OperationStatusInner extends OperationStatusResult { + /* + * Additional properties from RP, only when operation is successful + */ + @JsonProperty(value = "properties") + @JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS) + private Map properties; + + /** + * Get the properties property: Additional properties from RP, only when operation is successful. + * + * @return the properties value. + */ + public Map properties() { + return this.properties; + } + + /** + * Set the properties property: Additional properties from RP, only when operation is successful. + * + * @param properties the properties value to set. + * @return the OperationStatusInner object itself. + */ + public OperationStatusInner withProperties(Map properties) { + this.properties = properties; + return this; + } + + /** {@inheritDoc} */ + @Override + public OperationStatusInner withId(String id) { + super.withId(id); + return this; + } + + /** {@inheritDoc} */ + @Override + public OperationStatusInner withName(String name) { + super.withName(name); + return this; + } + + /** {@inheritDoc} */ + @Override + public OperationStatusInner withStatus(String status) { + super.withStatus(status); + return this; + } + + /** {@inheritDoc} */ + @Override + public OperationStatusInner withPercentComplete(Float percentComplete) { + super.withPercentComplete(percentComplete); + return this; + } + + /** {@inheritDoc} */ + @Override + public OperationStatusInner withStartTime(OffsetDateTime startTime) { + super.withStartTime(startTime); + return this; + } + + /** {@inheritDoc} */ + @Override + public OperationStatusInner withEndTime(OffsetDateTime endTime) { + super.withEndTime(endTime); + return this; + } + + /** {@inheritDoc} */ + @Override + public OperationStatusInner withOperations(List operations) { + super.withOperations(operations); + return this; + } + + /** {@inheritDoc} */ + @Override + public OperationStatusInner withError(ErrorDetail error) { + super.withError(error); + return this; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + @Override + public void validate() { + super.validate(); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateEndpointConnectionInner.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateEndpointConnectionInner.java index 23803373326e9..8021c7eb7004f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateEndpointConnectionInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateEndpointConnectionInner.java @@ -6,18 +6,14 @@ import com.azure.core.annotation.Fluent; import com.azure.core.management.ProxyResource; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.models.PrivateEndpoint; import com.azure.resourcemanager.redis.models.PrivateEndpointConnectionProvisioningState; import com.azure.resourcemanager.redis.models.PrivateLinkServiceConnectionState; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** The Private Endpoint Connection resource. */ @Fluent public final class PrivateEndpointConnectionInner extends ProxyResource { - @JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateEndpointConnectionInner.class); - /* * Resource properties. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateEndpointConnectionProperties.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateEndpointConnectionProperties.java index 0db6937abbe83..d75db43cc0965 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateEndpointConnectionProperties.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateEndpointConnectionProperties.java @@ -9,14 +9,11 @@ import com.azure.resourcemanager.redis.models.PrivateEndpoint; import com.azure.resourcemanager.redis.models.PrivateEndpointConnectionProvisioningState; import com.azure.resourcemanager.redis.models.PrivateLinkServiceConnectionState; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Properties of the PrivateEndpointConnectProperties. */ @Fluent public final class PrivateEndpointConnectionProperties { - @JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateEndpointConnectionProperties.class); - /* * The resource of private end point. */ @@ -98,7 +95,7 @@ public void validate() { privateEndpoint().validate(); } if (privateLinkServiceConnectionState() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property privateLinkServiceConnectionState in model" @@ -107,4 +104,6 @@ public void validate() { privateLinkServiceConnectionState().validate(); } } + + private static final ClientLogger LOGGER = new ClientLogger(PrivateEndpointConnectionProperties.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateLinkResourceInner.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateLinkResourceInner.java index 2929661375542..edd58773cb956 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateLinkResourceInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateLinkResourceInner.java @@ -6,16 +6,12 @@ import com.azure.core.annotation.Fluent; import com.azure.core.management.ProxyResource; -import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** A private link resource. */ @Fluent public final class PrivateLinkResourceInner extends ProxyResource { - @JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateLinkResourceInner.class); - /* * Resource properties. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateLinkResourceProperties.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateLinkResourceProperties.java index ea87e1f5db6fa..719ee86e15315 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateLinkResourceProperties.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/PrivateLinkResourceProperties.java @@ -5,16 +5,12 @@ package com.azure.resourcemanager.redis.fluent.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** Properties of a private link resource. */ @Fluent public final class PrivateLinkResourceProperties { - @JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateLinkResourceProperties.class); - /* * The private link resource group id. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisAccessKeysInner.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisAccessKeysInner.java index 58993cfeb4ec5..d3ae77f37473d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisAccessKeysInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisAccessKeysInner.java @@ -5,15 +5,11 @@ package com.azure.resourcemanager.redis.fluent.models; import com.azure.core.annotation.Immutable; -import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Redis cache access keys. */ @Immutable public final class RedisAccessKeysInner { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisAccessKeysInner.class); - /* * The current primary key that clients can use to authenticate with Redis * cache. diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisCreateProperties.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisCreateProperties.java index 0eb6caa136018..02a49741c1170 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisCreateProperties.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisCreateProperties.java @@ -8,17 +8,15 @@ import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.models.PublicNetworkAccess; import com.azure.resourcemanager.redis.models.RedisCommonProperties; +import com.azure.resourcemanager.redis.models.RedisCommonPropertiesRedisConfiguration; import com.azure.resourcemanager.redis.models.Sku; import com.azure.resourcemanager.redis.models.TlsVersion; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Map; /** Properties supplied to Create Redis operation. */ @Fluent public class RedisCreateProperties extends RedisCommonProperties { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisCreateProperties.class); - /* * The SKU of the Redis cache to deploy. */ @@ -34,8 +32,9 @@ public class RedisCreateProperties extends RedisCommonProperties { private String subnetId; /* - * Static IP address. Required when deploying a Redis cache inside an - * existing Azure Virtual Network. + * Static IP address. Optionally, may be specified when deploying a Redis + * cache inside an existing Azure Virtual Network; auto assigned by + * default. */ @JsonProperty(value = "staticIP") private String staticIp; @@ -85,8 +84,8 @@ public RedisCreateProperties withSubnetId(String subnetId) { } /** - * Get the staticIp property: Static IP address. Required when deploying a Redis cache inside an existing Azure - * Virtual Network. + * Get the staticIp property: Static IP address. Optionally, may be specified when deploying a Redis cache inside an + * existing Azure Virtual Network; auto assigned by default. * * @return the staticIp value. */ @@ -95,8 +94,8 @@ public String staticIp() { } /** - * Set the staticIp property: Static IP address. Required when deploying a Redis cache inside an existing Azure - * Virtual Network. + * Set the staticIp property: Static IP address. Optionally, may be specified when deploying a Redis cache inside an + * existing Azure Virtual Network; auto assigned by default. * * @param staticIp the staticIp value to set. * @return the RedisCreateProperties object itself. @@ -108,7 +107,7 @@ public RedisCreateProperties withStaticIp(String staticIp) { /** {@inheritDoc} */ @Override - public RedisCreateProperties withRedisConfiguration(Map redisConfiguration) { + public RedisCreateProperties withRedisConfiguration(RedisCommonPropertiesRedisConfiguration redisConfiguration) { super.withRedisConfiguration(redisConfiguration); return this; } @@ -178,11 +177,13 @@ public RedisCreateProperties withPublicNetworkAccess(PublicNetworkAccess publicN public void validate() { super.validate(); if (sku() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException("Missing required property sku in model RedisCreateProperties")); } else { sku().validate(); } } + + private static final ClientLogger LOGGER = new ClientLogger(RedisCreateProperties.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisFirewallRuleInner.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisFirewallRuleInner.java index d536f3c95a782..e9da7ae04d186 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisFirewallRuleInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisFirewallRuleInner.java @@ -7,7 +7,6 @@ import com.azure.core.annotation.Fluent; import com.azure.core.management.ProxyResource; import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** @@ -15,8 +14,6 @@ */ @Fluent public class RedisFirewallRuleInner extends ProxyResource { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisFirewallRuleInner.class); - /* * redis cache firewall rule properties */ @@ -85,7 +82,7 @@ public RedisFirewallRuleInner withEndIp(String endIp) { */ public void validate() { if (innerProperties() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property innerProperties in model RedisFirewallRuleInner")); @@ -93,4 +90,6 @@ public void validate() { innerProperties().validate(); } } + + private static final ClientLogger LOGGER = new ClientLogger(RedisFirewallRuleInner.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisFirewallRuleProperties.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisFirewallRuleProperties.java index 23c8622361a3b..5f1ee762b3a5a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisFirewallRuleProperties.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisFirewallRuleProperties.java @@ -6,14 +6,11 @@ import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Specifies a range of IP addresses permitted to connect to the cache. */ @Fluent public final class RedisFirewallRuleProperties { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisFirewallRuleProperties.class); - /* * lowest IP address included in the range */ @@ -73,16 +70,18 @@ public RedisFirewallRuleProperties withEndIp(String endIp) { */ public void validate() { if (startIp() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property startIp in model RedisFirewallRuleProperties")); } if (endIp() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property endIp in model RedisFirewallRuleProperties")); } } + + private static final ClientLogger LOGGER = new ClientLogger(RedisFirewallRuleProperties.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisForceRebootResponseInner.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisForceRebootResponseInner.java index d09312934545b..e76c4d5845eb9 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisForceRebootResponseInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisForceRebootResponseInner.java @@ -5,15 +5,11 @@ package com.azure.resourcemanager.redis.fluent.models; import com.azure.core.annotation.Immutable; -import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Response to force reboot for Redis cache. */ @Immutable public final class RedisForceRebootResponseInner { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisForceRebootResponseInner.class); - /* * Status message */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisLinkedServerCreateProperties.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisLinkedServerCreateProperties.java index 89e9eabfa07fd..1d0cf33a7a80c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisLinkedServerCreateProperties.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisLinkedServerCreateProperties.java @@ -7,14 +7,11 @@ import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.models.ReplicationRole; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Create properties for a linked server. */ @Fluent public class RedisLinkedServerCreateProperties { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisLinkedServerCreateProperties.class); - /* * Fully qualified resourceId of the linked redis cache. */ @@ -100,23 +97,25 @@ public RedisLinkedServerCreateProperties withServerRole(ReplicationRole serverRo */ public void validate() { if (linkedRedisCacheId() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property linkedRedisCacheId in model RedisLinkedServerCreateProperties")); } if (linkedRedisCacheLocation() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property linkedRedisCacheLocation in model" + " RedisLinkedServerCreateProperties")); } if (serverRole() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property serverRole in model RedisLinkedServerCreateProperties")); } } + + private static final ClientLogger LOGGER = new ClientLogger(RedisLinkedServerCreateProperties.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisLinkedServerProperties.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisLinkedServerProperties.java index b9249eabdfb0f..658a466eb4084 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisLinkedServerProperties.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisLinkedServerProperties.java @@ -5,16 +5,12 @@ package com.azure.resourcemanager.redis.fluent.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.models.ReplicationRole; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Properties of a linked server to be returned in get/put response. */ @Fluent public final class RedisLinkedServerProperties extends RedisLinkedServerCreateProperties { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisLinkedServerProperties.class); - /* * Terminal state of the link between primary and secondary redis cache. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisLinkedServerWithPropertiesInner.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisLinkedServerWithPropertiesInner.java index d8240769b0456..d5509689ad08e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisLinkedServerWithPropertiesInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisLinkedServerWithPropertiesInner.java @@ -6,16 +6,12 @@ import com.azure.core.annotation.Fluent; import com.azure.core.management.ProxyResource; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.models.ReplicationRole; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Response to put/get linked server (with properties) for Redis cache. */ @Fluent public final class RedisLinkedServerWithPropertiesInner extends ProxyResource { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisLinkedServerWithPropertiesInner.class); - /* * Properties of the linked server. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisPatchScheduleInner.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisPatchScheduleInner.java index 5a165ce264f2b..fe92a79a20b08 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisPatchScheduleInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisPatchScheduleInner.java @@ -8,21 +8,24 @@ import com.azure.core.management.ProxyResource; import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.models.ScheduleEntry; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** Response to put/get patch schedules for Redis cache. */ @Fluent public final class RedisPatchScheduleInner extends ProxyResource { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisPatchScheduleInner.class); - /* * List of patch schedules for a Redis cache. */ @JsonProperty(value = "properties", required = true) private ScheduleEntries innerProperties = new ScheduleEntries(); + /* + * The geo-location where the resource lives + */ + @JsonProperty(value = "location", access = JsonProperty.Access.WRITE_ONLY) + private String location; + /** * Get the innerProperties property: List of patch schedules for a Redis cache. * @@ -32,6 +35,15 @@ private ScheduleEntries innerProperties() { return this.innerProperties; } + /** + * Get the location property: The geo-location where the resource lives. + * + * @return the location value. + */ + public String location() { + return this.location; + } + /** * Get the scheduleEntries property: List of patch schedules for a Redis cache. * @@ -62,7 +74,7 @@ public RedisPatchScheduleInner withScheduleEntries(List scheduleE */ public void validate() { if (innerProperties() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property innerProperties in model RedisPatchScheduleInner")); @@ -70,4 +82,6 @@ public void validate() { innerProperties().validate(); } } + + private static final ClientLogger LOGGER = new ClientLogger(RedisPatchScheduleInner.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisPropertiesInner.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisPropertiesInner.java index d4fee19b7caa0..1b116fba01c4f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisPropertiesInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisPropertiesInner.java @@ -5,14 +5,13 @@ package com.azure.resourcemanager.redis.fluent.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.models.ProvisioningState; import com.azure.resourcemanager.redis.models.PublicNetworkAccess; +import com.azure.resourcemanager.redis.models.RedisCommonPropertiesRedisConfiguration; import com.azure.resourcemanager.redis.models.RedisInstanceDetails; import com.azure.resourcemanager.redis.models.RedisLinkedServer; import com.azure.resourcemanager.redis.models.Sku; import com.azure.resourcemanager.redis.models.TlsVersion; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; import java.util.Map; @@ -20,8 +19,6 @@ /** Properties of the redis cache. */ @Fluent public final class RedisPropertiesInner extends RedisCreateProperties { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisPropertiesInner.class); - /* * Redis instance provisioning status. */ @@ -169,7 +166,7 @@ public RedisPropertiesInner withStaticIp(String staticIp) { /** {@inheritDoc} */ @Override - public RedisPropertiesInner withRedisConfiguration(Map redisConfiguration) { + public RedisPropertiesInner withRedisConfiguration(RedisCommonPropertiesRedisConfiguration redisConfiguration) { super.withRedisConfiguration(redisConfiguration); return this; } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisResourceInner.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisResourceInner.java index 23a4c564f8efc..d2153994c8abb 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisResourceInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisResourceInner.java @@ -7,13 +7,14 @@ import com.azure.core.annotation.Fluent; import com.azure.core.management.Resource; import com.azure.core.util.logging.ClientLogger; +import com.azure.resourcemanager.redis.models.ManagedServiceIdentity; import com.azure.resourcemanager.redis.models.ProvisioningState; import com.azure.resourcemanager.redis.models.PublicNetworkAccess; +import com.azure.resourcemanager.redis.models.RedisCommonPropertiesRedisConfiguration; import com.azure.resourcemanager.redis.models.RedisInstanceDetails; import com.azure.resourcemanager.redis.models.RedisLinkedServer; import com.azure.resourcemanager.redis.models.Sku; import com.azure.resourcemanager.redis.models.TlsVersion; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; import java.util.Map; @@ -21,8 +22,6 @@ /** A single Redis item in List or Get Operation. */ @Fluent public final class RedisResourceInner extends Resource { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisResourceInner.class); - /* * Redis cache properties. */ @@ -36,6 +35,12 @@ public final class RedisResourceInner extends Resource { @JsonProperty(value = "zones") private List zones; + /* + * The identity of the resource. + */ + @JsonProperty(value = "identity") + private ManagedServiceIdentity identity; + /** * Get the innerProperties property: Redis cache properties. * @@ -65,6 +70,26 @@ public RedisResourceInner withZones(List zones) { return this; } + /** + * Get the identity property: The identity of the resource. + * + * @return the identity value. + */ + public ManagedServiceIdentity identity() { + return this.identity; + } + + /** + * Set the identity property: The identity of the resource. + * + * @param identity the identity value to set. + * @return the RedisResourceInner object itself. + */ + public RedisResourceInner withIdentity(ManagedServiceIdentity identity) { + this.identity = identity; + return this; + } + /** {@inheritDoc} */ @Override public RedisResourceInner withLocation(String location) { @@ -204,8 +229,8 @@ public RedisResourceInner withSubnetId(String subnetId) { } /** - * Get the staticIp property: Static IP address. Required when deploying a Redis cache inside an existing Azure - * Virtual Network. + * Get the staticIp property: Static IP address. Optionally, may be specified when deploying a Redis cache inside an + * existing Azure Virtual Network; auto assigned by default. * * @return the staticIp value. */ @@ -214,8 +239,8 @@ public String staticIp() { } /** - * Set the staticIp property: Static IP address. Required when deploying a Redis cache inside an existing Azure - * Virtual Network. + * Set the staticIp property: Static IP address. Optionally, may be specified when deploying a Redis cache inside an + * existing Azure Virtual Network; auto assigned by default. * * @param staticIp the staticIp value to set. * @return the RedisResourceInner object itself. @@ -235,7 +260,7 @@ public RedisResourceInner withStaticIp(String staticIp) { * * @return the redisConfiguration value. */ - public Map redisConfiguration() { + public RedisCommonPropertiesRedisConfiguration redisConfiguration() { return this.innerProperties() == null ? null : this.innerProperties().redisConfiguration(); } @@ -247,7 +272,7 @@ public Map redisConfiguration() { * @param redisConfiguration the redisConfiguration value to set. * @return the RedisResourceInner object itself. */ - public RedisResourceInner withRedisConfiguration(Map redisConfiguration) { + public RedisResourceInner withRedisConfiguration(RedisCommonPropertiesRedisConfiguration redisConfiguration) { if (this.innerProperties() == null) { this.innerProperties = new RedisPropertiesInner(); } @@ -454,12 +479,17 @@ public RedisResourceInner withPublicNetworkAccess(PublicNetworkAccess publicNetw */ public void validate() { if (innerProperties() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property innerProperties in model RedisResourceInner")); } else { innerProperties().validate(); } + if (identity() != null) { + identity().validate(); + } } + + private static final ClientLogger LOGGER = new ClientLogger(RedisResourceInner.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisUpdateProperties.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisUpdateProperties.java index f40c9ca6d8132..f0ec4c8fdba7a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisUpdateProperties.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/RedisUpdateProperties.java @@ -5,20 +5,17 @@ package com.azure.resourcemanager.redis.fluent.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.models.PublicNetworkAccess; import com.azure.resourcemanager.redis.models.RedisCommonProperties; +import com.azure.resourcemanager.redis.models.RedisCommonPropertiesRedisConfiguration; import com.azure.resourcemanager.redis.models.Sku; import com.azure.resourcemanager.redis.models.TlsVersion; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Map; /** Patchable properties of the redis cache. */ @Fluent public final class RedisUpdateProperties extends RedisCommonProperties { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisUpdateProperties.class); - /* * The SKU of the Redis cache to deploy. */ @@ -47,7 +44,7 @@ public RedisUpdateProperties withSku(Sku sku) { /** {@inheritDoc} */ @Override - public RedisUpdateProperties withRedisConfiguration(Map redisConfiguration) { + public RedisUpdateProperties withRedisConfiguration(RedisCommonPropertiesRedisConfiguration redisConfiguration) { super.withRedisConfiguration(redisConfiguration); return this; } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/ScheduleEntries.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/ScheduleEntries.java index 5e336cc7d8e89..44a2d617ef446 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/ScheduleEntries.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/ScheduleEntries.java @@ -7,15 +7,12 @@ import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.models.ScheduleEntry; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** List of patch schedules for a Redis cache. */ @Fluent public final class ScheduleEntries { - @JsonIgnore private final ClientLogger logger = new ClientLogger(ScheduleEntries.class); - /* * List of patch schedules for a Redis cache. */ @@ -49,11 +46,13 @@ public ScheduleEntries withScheduleEntries(List scheduleEntries) */ public void validate() { if (scheduleEntries() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException("Missing required property scheduleEntries in model ScheduleEntries")); } else { scheduleEntries().forEach(e -> e.validate()); } } + + private static final ClientLogger LOGGER = new ClientLogger(ScheduleEntries.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/UpgradeNotificationInner.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/UpgradeNotificationInner.java index ff6132553f458..d276e148fcc3b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/UpgradeNotificationInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/fluent/models/UpgradeNotificationInner.java @@ -5,8 +5,6 @@ package com.azure.resourcemanager.redis.fluent.models; import com.azure.core.annotation.Immutable; -import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import java.time.OffsetDateTime; @@ -15,8 +13,6 @@ /** Properties of upgrade notification. */ @Immutable public final class UpgradeNotificationInner { - @JsonIgnore private final ClientLogger logger = new ClientLogger(UpgradeNotificationInner.class); - /* * Name of upgrade notification. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/AsyncOperationStatusClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/AsyncOperationStatusClientImpl.java new file mode 100644 index 0000000000000..ee6bc55c79647 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/AsyncOperationStatusClientImpl.java @@ -0,0 +1,215 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.implementation; + +import com.azure.core.annotation.ExpectedResponses; +import com.azure.core.annotation.Get; +import com.azure.core.annotation.HeaderParam; +import com.azure.core.annotation.Headers; +import com.azure.core.annotation.Host; +import com.azure.core.annotation.HostParam; +import com.azure.core.annotation.PathParam; +import com.azure.core.annotation.QueryParam; +import com.azure.core.annotation.ReturnType; +import com.azure.core.annotation.ServiceInterface; +import com.azure.core.annotation.ServiceMethod; +import com.azure.core.annotation.UnexpectedResponseExceptionType; +import com.azure.core.http.rest.Response; +import com.azure.core.http.rest.RestProxy; +import com.azure.core.management.exception.ManagementException; +import com.azure.core.util.Context; +import com.azure.core.util.FluxUtil; +import com.azure.resourcemanager.redis.fluent.AsyncOperationStatusClient; +import com.azure.resourcemanager.redis.fluent.models.OperationStatusInner; +import reactor.core.publisher.Mono; + +/** An instance of this class provides access to all the operations defined in AsyncOperationStatusClient. */ +public final class AsyncOperationStatusClientImpl implements AsyncOperationStatusClient { + /** The proxy service used to perform REST calls. */ + private final AsyncOperationStatusService service; + + /** The service client containing this operation class. */ + private final RedisManagementClientImpl client; + + /** + * Initializes an instance of AsyncOperationStatusClientImpl. + * + * @param client the instance of the service client containing this operation class. + */ + AsyncOperationStatusClientImpl(RedisManagementClientImpl client) { + this.service = + RestProxy + .create(AsyncOperationStatusService.class, client.getHttpPipeline(), client.getSerializerAdapter()); + this.client = client; + } + + /** + * The interface defining all the services for RedisManagementClientAsyncOperationStatus to be used by the proxy + * service to perform REST calls. + */ + @Host("{$host}") + @ServiceInterface(name = "RedisManagementClien") + private interface AsyncOperationStatusService { + @Headers({"Content-Type: application/json"}) + @Get( + "/subscriptions/{subscriptionId}/providers/Microsoft.Cache/locations/{location}/asyncOperations" + + "/{operationId}") + @ExpectedResponses({200}) + @UnexpectedResponseExceptionType(ManagementException.class) + Mono> get( + @HostParam("$host") String endpoint, + @PathParam("location") String location, + @PathParam("operationId") String operationId, + @QueryParam("api-version") String apiVersion, + @PathParam("subscriptionId") String subscriptionId, + @HeaderParam("Accept") String accept, + Context context); + } + + /** + * For checking the ongoing status of an operation. + * + * @param location The location at which operation was triggered. + * @param operationId The ID of asynchronous operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return asynchronous operation status along with {@link Response} on successful completion of {@link Mono}. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono> getWithResponseAsync(String location, String operationId) { + if (this.client.getEndpoint() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getEndpoint() is required and cannot be null.")); + } + if (location == null) { + return Mono.error(new IllegalArgumentException("Parameter location is required and cannot be null.")); + } + if (operationId == null) { + return Mono.error(new IllegalArgumentException("Parameter operationId is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + final String accept = "application/json"; + return FluxUtil + .withContext( + context -> + service + .get( + this.client.getEndpoint(), + location, + operationId, + this.client.getApiVersion(), + this.client.getSubscriptionId(), + accept, + context)) + .contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly())); + } + + /** + * For checking the ongoing status of an operation. + * + * @param location The location at which operation was triggered. + * @param operationId The ID of asynchronous operation. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return asynchronous operation status along with {@link Response} on successful completion of {@link Mono}. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + private Mono> getWithResponseAsync( + String location, String operationId, Context context) { + if (this.client.getEndpoint() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getEndpoint() is required and cannot be null.")); + } + if (location == null) { + return Mono.error(new IllegalArgumentException("Parameter location is required and cannot be null.")); + } + if (operationId == null) { + return Mono.error(new IllegalArgumentException("Parameter operationId is required and cannot be null.")); + } + if (this.client.getSubscriptionId() == null) { + return Mono + .error( + new IllegalArgumentException( + "Parameter this.client.getSubscriptionId() is required and cannot be null.")); + } + final String accept = "application/json"; + context = this.client.mergeContext(context); + return service + .get( + this.client.getEndpoint(), + location, + operationId, + this.client.getApiVersion(), + this.client.getSubscriptionId(), + accept, + context); + } + + /** + * For checking the ongoing status of an operation. + * + * @param location The location at which operation was triggered. + * @param operationId The ID of asynchronous operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return asynchronous operation status on successful completion of {@link Mono}. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Mono getAsync(String location, String operationId) { + return getWithResponseAsync(location, operationId) + .flatMap( + (Response res) -> { + if (res.getValue() != null) { + return Mono.just(res.getValue()); + } else { + return Mono.empty(); + } + }); + } + + /** + * For checking the ongoing status of an operation. + * + * @param location The location at which operation was triggered. + * @param operationId The ID of asynchronous operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return asynchronous operation status. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public OperationStatusInner get(String location, String operationId) { + return getAsync(location, operationId).block(); + } + + /** + * For checking the ongoing status of an operation. + * + * @param location The location at which operation was triggered. + * @param operationId The ID of asynchronous operation. + * @param context The context to associate with this operation. + * @throws IllegalArgumentException thrown if parameters fail the validation. + * @throws ManagementException thrown if the request is rejected by server. + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. + * @return asynchronous operation status along with {@link Response}. + */ + @ServiceMethod(returns = ReturnType.SINGLE) + public Response getWithResponse(String location, String operationId, Context context) { + return getWithResponseAsync(location, operationId, context).block(); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/ConfigurationUtils.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/ConfigurationUtils.java new file mode 100644 index 0000000000000..57ba46e46f59a --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/ConfigurationUtils.java @@ -0,0 +1,160 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +package com.azure.resourcemanager.redis.implementation; + +import com.azure.resourcemanager.redis.models.RedisCommonPropertiesRedisConfiguration; + +import java.util.HashMap; +import java.util.Map; + +class ConfigurationUtils { + + static RedisCommonPropertiesRedisConfiguration toConfiguration(Map configuration) { + RedisCommonPropertiesRedisConfiguration c = new RedisCommonPropertiesRedisConfiguration(); + if (configuration != null) { + configuration.forEach((k, v) -> putConfiguration(c, k, v)); + } + return c; + } + + static Map toMap(RedisCommonPropertiesRedisConfiguration configuration) { + Map map = new HashMap<>(); + if (configuration != null) { + if (configuration.maxmemoryPolicy() != null) { + map.put("maxmemory-policy", configuration.maxmemoryPolicy()); + } + if (configuration.rdbBackupEnabled() != null) { + map.put("rdb-backup-enabled", configuration.rdbBackupEnabled()); + } + if (configuration.preferredDataPersistenceAuthMethod() != null) { + map.put("preferred-data-persistence-auth-method", configuration.preferredDataPersistenceAuthMethod()); + } + if (configuration.rdbBackupMaxSnapshotCount() != null) { + map.put("rdb-backup-max-snapshot-count", configuration.rdbBackupMaxSnapshotCount()); + } + if (configuration.aofStorageConnectionString0() != null) { + map.put("aof-storage-connection-string-0", configuration.aofStorageConnectionString0()); + } + if (configuration.aofStorageConnectionString1() != null) { + map.put("aof-storage-connection-string-1", configuration.aofStorageConnectionString1()); + } + if (configuration.maxclients() != null) { + map.put("maxclients", configuration.maxclients()); + } + if (configuration.rdbStorageConnectionString() != null) { + map.put("rdb-storage-connection-string", configuration.rdbStorageConnectionString()); + } + if (configuration.maxmemoryDelta() != null) { + map.put("maxmemory-delta", configuration.maxmemoryDelta()); + } + if (configuration.maxfragmentationmemoryReserved() != null) { + map.put("maxfragmentationmemory-reserved", configuration.maxfragmentationmemoryReserved()); + } + if (configuration.maxmemoryReserved() != null) { + map.put("maxmemory-reserved", configuration.maxmemoryReserved()); + } + if (configuration.preferredDataArchiveAuthMethod() != null) { + map.put("preferred-data-archive-auth-method", configuration.preferredDataArchiveAuthMethod()); + } + if (configuration.zonalConfiguration() != null) { + map.put("zonal-configuration", configuration.zonalConfiguration()); + } + if (configuration.rdbBackupFrequency() != null) { + map.put("rdb-backup-frequency", configuration.rdbBackupFrequency()); + } + if (configuration.additionalProperties() != null) { + configuration.additionalProperties().forEach((key1, value) -> map.put(key1, value.toString())); + } + } + return map; + } + + static void putConfiguration(RedisCommonPropertiesRedisConfiguration configuration, + String key, String value) { + if (configuration == null) { + return; + } + switch (key) { + case "rdb-storage-connection-string": + configuration.withRdbStorageConnectionString(value); + break; + case "maxmemory-policy": + configuration.withMaxmemoryPolicy(value); + break; + case "maxmemory-delta": + configuration.withMaxmemoryDelta(value); + break; + case "rdb-backup-enabled": + configuration.withRdbBackupEnabled(value); + break; + case "maxfragmentationmemory-reserved": + configuration.withMaxfragmentationmemoryReserved(value); + break; + case "maxmemory-reserved": + configuration.withMaxmemoryReserved(value); + break; + case "rdb-backup-frequency": + configuration.withRdbBackupFrequency(value); + break; + case "rdb-backup-max-snapshot-count": + configuration.withRdbBackupMaxSnapshotCount(value); + break; + case "aof-storage-connection-string-0": + configuration.withAofStorageConnectionString0(value); + break; + case "aof-storage-connection-string-1": + configuration.withAofStorageConnectionString1(value); + break; + default: + if (configuration.additionalProperties() == null) { + configuration.withAdditionalProperties(new HashMap<>()); + } + configuration.additionalProperties().put(key, value); + break; + } + } + + static void removeConfiguration(RedisCommonPropertiesRedisConfiguration configuration, String key) { + if (configuration == null) { + return; + } + if (configuration.additionalProperties() != null) { + configuration.additionalProperties().remove(key); + } + switch (key) { + case "rdb-storage-connection-string": + configuration.withRdbStorageConnectionString(null); + break; + case "maxmemory-policy": + configuration.withMaxmemoryPolicy(null); + break; + case "maxmemory-delta": + configuration.withMaxmemoryDelta(null); + break; + case "rdb-backup-enabled": + configuration.withRdbBackupEnabled(null); + break; + case "maxfragmentationmemory-reserved": + configuration.withMaxfragmentationmemoryReserved(null); + break; + case "maxmemory-reserved": + configuration.withMaxmemoryReserved(null); + break; + case "rdb-backup-frequency": + configuration.withRdbBackupFrequency(null); + break; + case "rdb-backup-max-snapshot-count": + configuration.withRdbBackupMaxSnapshotCount(null); + break; + case "aof-storage-connection-string-0": + configuration.withAofStorageConnectionString0(null); + break; + case "aof-storage-connection-string-1": + configuration.withAofStorageConnectionString1(null); + break; + default: + break; + } + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/FirewallRulesClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/FirewallRulesClientImpl.java index 798c4d9227576..c446a8490cd9d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/FirewallRulesClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/FirewallRulesClientImpl.java @@ -28,7 +28,6 @@ import com.azure.core.management.exception.ManagementException; import com.azure.core.util.Context; import com.azure.core.util.FluxUtil; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.FirewallRulesClient; import com.azure.resourcemanager.redis.fluent.models.RedisFirewallRuleInner; import com.azure.resourcemanager.redis.models.RedisFirewallRuleListResult; @@ -36,8 +35,6 @@ /** An instance of this class provides access to all the operations defined in FirewallRulesClient. */ public final class FirewallRulesClientImpl implements FirewallRulesClient { - private final ClientLogger logger = new ClientLogger(FirewallRulesClientImpl.class); - /** The proxy service used to perform REST calls. */ private final FirewallRulesService service; @@ -145,7 +142,8 @@ Mono> listNext( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all firewall rules in the specified redis cache. + * @return all firewall rules in the specified redis cache along with {@link PagedResponse} on successful completion + * of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listSinglePageAsync( @@ -203,7 +201,8 @@ private Mono> listSinglePageAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all firewall rules in the specified redis cache. + * @return all firewall rules in the specified redis cache along with {@link PagedResponse} on successful completion + * of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listSinglePageAsync( @@ -257,7 +256,7 @@ private Mono> listSinglePageAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all firewall rules in the specified redis cache. + * @return all firewall rules in the specified redis cache as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedFlux listAsync(String resourceGroupName, String cacheName) { @@ -274,7 +273,7 @@ public PagedFlux listAsync(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all firewall rules in the specified redis cache. + * @return all firewall rules in the specified redis cache as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) private PagedFlux listAsync(String resourceGroupName, String cacheName, Context context) { @@ -291,7 +290,7 @@ private PagedFlux listAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all firewall rules in the specified redis cache. + * @return all firewall rules in the specified redis cache as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable list(String resourceGroupName, String cacheName) { @@ -307,7 +306,7 @@ public PagedIterable list(String resourceGroupName, Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all firewall rules in the specified redis cache. + * @return all firewall rules in the specified redis cache as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable list(String resourceGroupName, String cacheName, Context context) { @@ -325,7 +324,7 @@ public PagedIterable list(String resourceGroupName, Stri * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return a firewall rule on a redis cache has a name, and describes a contiguous range of IP addresses permitted - * to connect. + * to connect along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> createOrUpdateWithResponseAsync( @@ -387,7 +386,7 @@ public Mono> createOrUpdateWithResponseAsync( * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return a firewall rule on a redis cache has a name, and describes a contiguous range of IP addresses permitted - * to connect. + * to connect along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> createOrUpdateWithResponseAsync( @@ -449,7 +448,7 @@ private Mono> createOrUpdateWithResponseAsync( * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return a firewall rule on a redis cache has a name, and describes a contiguous range of IP addresses permitted - * to connect. + * to connect on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono createOrUpdateAsync( @@ -496,7 +495,7 @@ public RedisFirewallRuleInner createOrUpdate( * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return a firewall rule on a redis cache has a name, and describes a contiguous range of IP addresses permitted - * to connect. + * to connect along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response createOrUpdateWithResponse( @@ -517,7 +516,8 @@ public Response createOrUpdateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single firewall rule in a specified redis cache. + * @return a single firewall rule in a specified redis cache along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getWithResponseAsync( @@ -571,7 +571,8 @@ public Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single firewall rule in a specified redis cache. + * @return a single firewall rule in a specified redis cache along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> getWithResponseAsync( @@ -621,7 +622,7 @@ private Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single firewall rule in a specified redis cache. + * @return a single firewall rule in a specified redis cache on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono getAsync(String resourceGroupName, String cacheName, String ruleName) { @@ -662,7 +663,7 @@ public RedisFirewallRuleInner get(String resourceGroupName, String cacheName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single firewall rule in a specified redis cache. + * @return a single firewall rule in a specified redis cache along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response getWithResponse( @@ -679,7 +680,7 @@ public Response getWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> deleteWithResponseAsync(String resourceGroupName, String cacheName, String ruleName) { @@ -732,7 +733,7 @@ public Mono> deleteWithResponseAsync(String resourceGroupName, St * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> deleteWithResponseAsync( @@ -782,7 +783,7 @@ private Mono> deleteWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono deleteAsync(String resourceGroupName, String cacheName, String ruleName) { @@ -815,7 +816,7 @@ public void delete(String resourceGroupName, String cacheName, String ruleName) * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response deleteWithResponse( @@ -830,7 +831,8 @@ public Response deleteWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list firewall rules Redis operation. + * @return the response of list firewall rules Redis operation along with {@link PagedResponse} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listNextSinglePageAsync(String nextLink) { @@ -866,7 +868,8 @@ private Mono> listNextSinglePageAsync(Stri * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list firewall rules Redis operation. + * @return the response of list firewall rules Redis operation along with {@link PagedResponse} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listNextSinglePageAsync(String nextLink, Context context) { diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/LinkedServersClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/LinkedServersClientImpl.java index addf057d7885c..bf8d016854a80 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/LinkedServersClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/LinkedServersClientImpl.java @@ -29,7 +29,6 @@ import com.azure.core.management.polling.PollResult; import com.azure.core.util.Context; import com.azure.core.util.FluxUtil; -import com.azure.core.util.logging.ClientLogger; import com.azure.core.util.polling.PollerFlux; import com.azure.core.util.polling.SyncPoller; import com.azure.resourcemanager.redis.fluent.LinkedServersClient; @@ -42,8 +41,6 @@ /** An instance of this class provides access to all the operations defined in LinkedServersClient. */ public final class LinkedServersClientImpl implements LinkedServersClient { - private final ClientLogger logger = new ClientLogger(LinkedServersClientImpl.class); - /** The proxy service used to perform REST calls. */ private final LinkedServersService service; @@ -153,7 +150,8 @@ Mono> listNext( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return response to put/get linked server (with properties) for Redis cache along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> createWithResponseAsync( @@ -215,7 +213,8 @@ public Mono>> createWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return response to put/get linked server (with properties) for Redis cache along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> createWithResponseAsync( @@ -277,9 +276,10 @@ private Mono>> createWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return the {@link PollerFlux} for polling of response to put/get linked server (with properties) for Redis + * cache. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, RedisLinkedServerWithPropertiesInner> beginCreateAsync( String resourceGroupName, @@ -309,9 +309,10 @@ private Mono>> createWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return the {@link PollerFlux} for polling of response to put/get linked server (with properties) for Redis + * cache. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, RedisLinkedServerWithPropertiesInner> beginCreateAsync( String resourceGroupName, @@ -342,9 +343,10 @@ private Mono>> createWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return the {@link SyncPoller} for polling of response to put/get linked server (with properties) for Redis + * cache. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, RedisLinkedServerWithPropertiesInner> beginCreate( String resourceGroupName, @@ -365,9 +367,10 @@ private Mono>> createWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return the {@link SyncPoller} for polling of response to put/get linked server (with properties) for Redis + * cache. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, RedisLinkedServerWithPropertiesInner> beginCreate( String resourceGroupName, @@ -388,7 +391,8 @@ private Mono>> createWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return response to put/get linked server (with properties) for Redis cache on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono createAsync( @@ -409,7 +413,8 @@ public Mono createAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get linked server (with properties) for Redis cache. + * @return response to put/get linked server (with properties) for Redis cache on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono createAsync( @@ -473,7 +478,7 @@ public RedisLinkedServerWithPropertiesInner create( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> deleteWithResponseAsync( @@ -528,7 +533,7 @@ public Mono> deleteWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> deleteWithResponseAsync( @@ -579,7 +584,7 @@ private Mono> deleteWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono deleteAsync(String resourceGroupName, String name, String linkedServerName) { @@ -612,7 +617,7 @@ public void delete(String resourceGroupName, String name, String linkedServerNam * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response deleteWithResponse( @@ -629,7 +634,8 @@ public Response deleteWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the detailed information about a linked server of a redis cache (requires Premium SKU). + * @return the detailed information about a linked server of a redis cache (requires Premium SKU) along with {@link + * Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getWithResponseAsync( @@ -684,7 +690,8 @@ public Mono> getWithResponseAsync * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the detailed information about a linked server of a redis cache (requires Premium SKU). + * @return the detailed information about a linked server of a redis cache (requires Premium SKU) along with {@link + * Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> getWithResponseAsync( @@ -735,7 +742,8 @@ private Mono> getWithResponseAsyn * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the detailed information about a linked server of a redis cache (requires Premium SKU). + * @return the detailed information about a linked server of a redis cache (requires Premium SKU) on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono getAsync( @@ -777,7 +785,8 @@ public RedisLinkedServerWithPropertiesInner get(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the detailed information about a linked server of a redis cache (requires Premium SKU). + * @return the detailed information about a linked server of a redis cache (requires Premium SKU) along with {@link + * Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response getWithResponse( @@ -793,7 +802,8 @@ public Response getWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the list of linked servers associated with this redis cache (requires Premium SKU). + * @return the list of linked servers associated with this redis cache (requires Premium SKU) along with {@link + * PagedResponse} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listSinglePageAsync( @@ -851,7 +861,8 @@ private Mono> listSinglePage * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the list of linked servers associated with this redis cache (requires Premium SKU). + * @return the list of linked servers associated with this redis cache (requires Premium SKU) along with {@link + * PagedResponse} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listSinglePageAsync( @@ -905,7 +916,8 @@ private Mono> listSinglePage * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the list of linked servers associated with this redis cache (requires Premium SKU). + * @return the list of linked servers associated with this redis cache (requires Premium SKU) as paginated response + * with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedFlux listAsync(String resourceGroupName, String name) { @@ -922,7 +934,8 @@ public PagedFlux listAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the list of linked servers associated with this redis cache (requires Premium SKU). + * @return the list of linked servers associated with this redis cache (requires Premium SKU) as paginated response + * with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) private PagedFlux listAsync( @@ -940,7 +953,8 @@ private PagedFlux listAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the list of linked servers associated with this redis cache (requires Premium SKU). + * @return the list of linked servers associated with this redis cache (requires Premium SKU) as paginated response + * with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable list(String resourceGroupName, String name) { @@ -956,7 +970,8 @@ public PagedIterable list(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the list of linked servers associated with this redis cache (requires Premium SKU). + * @return the list of linked servers associated with this redis cache (requires Premium SKU) as paginated response + * with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable list( @@ -971,7 +986,8 @@ public PagedIterable list( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of linked servers (with properties) of a Redis cache. + * @return list of linked servers (with properties) of a Redis cache along with {@link PagedResponse} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listNextSinglePageAsync(String nextLink) { @@ -1007,7 +1023,8 @@ private Mono> listNextSingle * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of linked servers (with properties) of a Redis cache. + * @return list of linked servers (with properties) of a Redis cache along with {@link PagedResponse} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listNextSinglePageAsync( diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/OperationsClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/OperationsClientImpl.java index 25400456de8e1..0fc53cf66906f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/OperationsClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/OperationsClientImpl.java @@ -25,7 +25,6 @@ import com.azure.core.management.exception.ManagementException; import com.azure.core.util.Context; import com.azure.core.util.FluxUtil; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.OperationsClient; import com.azure.resourcemanager.redis.fluent.models.OperationInner; import com.azure.resourcemanager.redis.models.OperationListResult; @@ -33,8 +32,6 @@ /** An instance of this class provides access to all the operations defined in OperationsClient. */ public final class OperationsClientImpl implements OperationsClient { - private final ClientLogger logger = new ClientLogger(OperationsClientImpl.class); - /** The proxy service used to perform REST calls. */ private final OperationsService service; @@ -85,7 +82,8 @@ Mono> listNext( * * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return result of the request to list REST API operations. + * @return result of the request to list REST API operations along with {@link PagedResponse} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listSinglePageAsync() { @@ -118,7 +116,8 @@ private Mono> listSinglePageAsync() { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return result of the request to list REST API operations. + * @return result of the request to list REST API operations along with {@link PagedResponse} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listSinglePageAsync(Context context) { @@ -148,7 +147,7 @@ private Mono> listSinglePageAsync(Context context) * * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return result of the request to list REST API operations. + * @return result of the request to list REST API operations as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedFlux listAsync() { @@ -162,7 +161,7 @@ public PagedFlux listAsync() { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return result of the request to list REST API operations. + * @return result of the request to list REST API operations as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) private PagedFlux listAsync(Context context) { @@ -175,7 +174,7 @@ private PagedFlux listAsync(Context context) { * * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return result of the request to list REST API operations. + * @return result of the request to list REST API operations as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable list() { @@ -189,7 +188,7 @@ public PagedIterable list() { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return result of the request to list REST API operations. + * @return result of the request to list REST API operations as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable list(Context context) { @@ -203,7 +202,8 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return result of the request to list REST API operations. + * @return result of the request to list REST API operations along with {@link PagedResponse} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listNextSinglePageAsync(String nextLink) { @@ -239,7 +239,8 @@ private Mono> listNextSinglePageAsync(String nextL * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return result of the request to list REST API operations. + * @return result of the request to list REST API operations along with {@link PagedResponse} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listNextSinglePageAsync(String nextLink, Context context) { diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/PatchSchedulesClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/PatchSchedulesClientImpl.java index d12dd0dd04efa..972f0064b97bd 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/PatchSchedulesClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/PatchSchedulesClientImpl.java @@ -28,7 +28,6 @@ import com.azure.core.management.exception.ManagementException; import com.azure.core.util.Context; import com.azure.core.util.FluxUtil; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.PatchSchedulesClient; import com.azure.resourcemanager.redis.fluent.models.RedisPatchScheduleInner; import com.azure.resourcemanager.redis.models.DefaultName; @@ -37,8 +36,6 @@ /** An instance of this class provides access to all the operations defined in PatchSchedulesClient. */ public final class PatchSchedulesClientImpl implements PatchSchedulesClient { - private final ClientLogger logger = new ClientLogger(PatchSchedulesClientImpl.class); - /** The proxy service used to perform REST calls. */ private final PatchSchedulesService service; @@ -146,7 +143,8 @@ Mono> listByRedisResourceNext( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all patch schedules in the specified redis cache (there is only one). + * @return all patch schedules in the specified redis cache (there is only one) along with {@link PagedResponse} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listByRedisResourceSinglePageAsync( @@ -204,7 +202,8 @@ private Mono> listByRedisResourceSinglePa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all patch schedules in the specified redis cache (there is only one). + * @return all patch schedules in the specified redis cache (there is only one) along with {@link PagedResponse} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listByRedisResourceSinglePageAsync( @@ -258,7 +257,8 @@ private Mono> listByRedisResourceSinglePa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all patch schedules in the specified redis cache (there is only one). + * @return all patch schedules in the specified redis cache (there is only one) as paginated response with {@link + * PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedFlux listByRedisResourceAsync(String resourceGroupName, String cacheName) { @@ -276,7 +276,8 @@ public PagedFlux listByRedisResourceAsync(String resour * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all patch schedules in the specified redis cache (there is only one). + * @return all patch schedules in the specified redis cache (there is only one) as paginated response with {@link + * PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) private PagedFlux listByRedisResourceAsync( @@ -294,7 +295,8 @@ private PagedFlux listByRedisResourceAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all patch schedules in the specified redis cache (there is only one). + * @return all patch schedules in the specified redis cache (there is only one) as paginated response with {@link + * PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable listByRedisResource(String resourceGroupName, String cacheName) { @@ -310,7 +312,8 @@ public PagedIterable listByRedisResource(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all patch schedules in the specified redis cache (there is only one). + * @return all patch schedules in the specified redis cache (there is only one) as paginated response with {@link + * PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable listByRedisResource( @@ -328,7 +331,8 @@ public PagedIterable listByRedisResource( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get patch schedules for Redis cache. + * @return response to put/get patch schedules for Redis cache along with {@link Response} on successful completion + * of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> createOrUpdateWithResponseAsync( @@ -390,7 +394,8 @@ public Mono> createOrUpdateWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get patch schedules for Redis cache. + * @return response to put/get patch schedules for Redis cache along with {@link Response} on successful completion + * of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> createOrUpdateWithResponseAsync( @@ -452,7 +457,7 @@ private Mono> createOrUpdateWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get patch schedules for Redis cache. + * @return response to put/get patch schedules for Redis cache on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono createOrUpdateAsync( @@ -497,7 +502,7 @@ public RedisPatchScheduleInner createOrUpdate( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to put/get patch schedules for Redis cache. + * @return response to put/get patch schedules for Redis cache along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response createOrUpdateWithResponse( @@ -518,7 +523,7 @@ public Response createOrUpdateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> deleteWithResponseAsync( @@ -573,7 +578,7 @@ public Mono> deleteWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> deleteWithResponseAsync( @@ -624,7 +629,7 @@ private Mono> deleteWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono deleteAsync(String resourceGroupName, String name, DefaultName defaultParameter) { @@ -657,7 +662,7 @@ public void delete(String resourceGroupName, String name, DefaultName defaultPar * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response deleteWithResponse( @@ -674,7 +679,8 @@ public Response deleteWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the patching schedule of a redis cache. + * @return the patching schedule of a redis cache along with {@link Response} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getWithResponseAsync( @@ -729,7 +735,8 @@ public Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the patching schedule of a redis cache. + * @return the patching schedule of a redis cache along with {@link Response} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> getWithResponseAsync( @@ -780,7 +787,7 @@ private Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the patching schedule of a redis cache. + * @return the patching schedule of a redis cache on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono getAsync(String resourceGroupName, String name, DefaultName defaultParameter) { @@ -821,7 +828,7 @@ public RedisPatchScheduleInner get(String resourceGroupName, String name, Defaul * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the patching schedule of a redis cache. + * @return the patching schedule of a redis cache along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response getWithResponse( @@ -836,7 +843,8 @@ public Response getWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list patch schedules Redis operation. + * @return the response of list patch schedules Redis operation along with {@link PagedResponse} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listByRedisResourceNextSinglePageAsync(String nextLink) { @@ -873,7 +881,8 @@ private Mono> listByRedisResourceNextSing * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list patch schedules Redis operation. + * @return the response of list patch schedules Redis operation along with {@link PagedResponse} on successful + * completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listByRedisResourceNextSinglePageAsync( diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/PrivateEndpointConnectionsClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/PrivateEndpointConnectionsClientImpl.java index 1cf6c716b039d..c02c852b5d5cc 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/PrivateEndpointConnectionsClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/PrivateEndpointConnectionsClientImpl.java @@ -29,7 +29,6 @@ import com.azure.core.management.polling.PollResult; import com.azure.core.util.Context; import com.azure.core.util.FluxUtil; -import com.azure.core.util.logging.ClientLogger; import com.azure.core.util.polling.PollerFlux; import com.azure.core.util.polling.SyncPoller; import com.azure.resourcemanager.redis.fluent.PrivateEndpointConnectionsClient; @@ -41,8 +40,6 @@ /** An instance of this class provides access to all the operations defined in PrivateEndpointConnectionsClient. */ public final class PrivateEndpointConnectionsClientImpl implements PrivateEndpointConnectionsClient { - private final ClientLogger logger = new ClientLogger(PrivateEndpointConnectionsClientImpl.class); - /** The proxy service used to perform REST calls. */ private final PrivateEndpointConnectionsService service; @@ -142,7 +139,8 @@ Mono> delete( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of private endpoint connection associated with the specified storage account. + * @return list of private endpoint connection associated with the specified storage account along with {@link + * PagedResponse} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listSinglePageAsync( @@ -195,7 +193,8 @@ private Mono> listSinglePageAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of private endpoint connection associated with the specified storage account. + * @return list of private endpoint connection associated with the specified storage account along with {@link + * PagedResponse} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listSinglePageAsync( @@ -244,7 +243,8 @@ private Mono> listSinglePageAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of private endpoint connection associated with the specified storage account. + * @return list of private endpoint connection associated with the specified storage account as paginated response + * with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedFlux listAsync(String resourceGroupName, String cacheName) { @@ -260,7 +260,8 @@ public PagedFlux listAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of private endpoint connection associated with the specified storage account. + * @return list of private endpoint connection associated with the specified storage account as paginated response + * with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) private PagedFlux listAsync( @@ -276,7 +277,8 @@ private PagedFlux listAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of private endpoint connection associated with the specified storage account. + * @return list of private endpoint connection associated with the specified storage account as paginated response + * with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable list(String resourceGroupName, String cacheName) { @@ -292,7 +294,8 @@ public PagedIterable list(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return list of private endpoint connection associated with the specified storage account. + * @return list of private endpoint connection associated with the specified storage account as paginated response + * with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable list( @@ -310,7 +313,8 @@ public PagedIterable list( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the specified private endpoint connection associated with the redis cache. + * @return the specified private endpoint connection associated with the redis cache along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getWithResponseAsync( @@ -368,7 +372,8 @@ public Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the specified private endpoint connection associated with the redis cache. + * @return the specified private endpoint connection associated with the redis cache along with {@link Response} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> getWithResponseAsync( @@ -422,7 +427,8 @@ private Mono> getWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the specified private endpoint connection associated with the redis cache. + * @return the specified private endpoint connection associated with the redis cache on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono getAsync( @@ -467,7 +473,7 @@ public PrivateEndpointConnectionInner get( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the specified private endpoint connection associated with the redis cache. + * @return the specified private endpoint connection associated with the redis cache along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response getWithResponse( @@ -486,7 +492,8 @@ public Response getWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the Private Endpoint Connection resource along with {@link Response} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> putWithResponseAsync( @@ -554,7 +561,8 @@ public Mono>> putWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the Private Endpoint Connection resource along with {@link Response} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> putWithResponseAsync( @@ -619,9 +627,9 @@ private Mono>> putWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the {@link PollerFlux} for polling of the Private Endpoint Connection resource. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, PrivateEndpointConnectionInner> beginPutAsync( String resourceGroupName, String cacheName, @@ -651,9 +659,9 @@ public PollerFlux, PrivateEndpointCon * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the {@link PollerFlux} for polling of the Private Endpoint Connection resource. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, PrivateEndpointConnectionInner> beginPutAsync( String resourceGroupName, String cacheName, @@ -684,9 +692,9 @@ private PollerFlux, PrivateEndpointCo * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the {@link SyncPoller} for polling of the Private Endpoint Connection resource. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, PrivateEndpointConnectionInner> beginPut( String resourceGroupName, String cacheName, @@ -707,9 +715,9 @@ public SyncPoller, PrivateEndpointCon * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the {@link SyncPoller} for polling of the Private Endpoint Connection resource. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, PrivateEndpointConnectionInner> beginPut( String resourceGroupName, String cacheName, @@ -731,7 +739,7 @@ public SyncPoller, PrivateEndpointCon * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the Private Endpoint Connection resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono putAsync( @@ -756,7 +764,7 @@ public Mono putAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the Private Endpoint Connection resource. + * @return the Private Endpoint Connection resource on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono putAsync( @@ -826,7 +834,7 @@ public PrivateEndpointConnectionInner put( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> deleteWithResponseAsync( @@ -884,7 +892,7 @@ public Mono> deleteWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> deleteWithResponseAsync( @@ -938,7 +946,7 @@ private Mono> deleteWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono deleteAsync(String resourceGroupName, String cacheName, String privateEndpointConnectionName) { @@ -973,7 +981,7 @@ public void delete(String resourceGroupName, String cacheName, String privateEnd * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response deleteWithResponse( diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/PrivateLinkResourcesClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/PrivateLinkResourcesClientImpl.java index c1a0b91c21df3..ed315cba153b4 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/PrivateLinkResourcesClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/PrivateLinkResourcesClientImpl.java @@ -25,7 +25,6 @@ import com.azure.core.management.exception.ManagementException; import com.azure.core.util.Context; import com.azure.core.util.FluxUtil; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.PrivateLinkResourcesClient; import com.azure.resourcemanager.redis.fluent.models.PrivateLinkResourceInner; import com.azure.resourcemanager.redis.models.PrivateLinkResourceListResult; @@ -33,8 +32,6 @@ /** An instance of this class provides access to all the operations defined in PrivateLinkResourcesClient. */ public final class PrivateLinkResourcesClientImpl implements PrivateLinkResourcesClient { - private final ClientLogger logger = new ClientLogger(PrivateLinkResourcesClientImpl.class); - /** The proxy service used to perform REST calls. */ private final PrivateLinkResourcesService service; @@ -84,7 +81,8 @@ Mono> listByRedisCache( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the private link resources that need to be created for a redis cache. + * @return the private link resources that need to be created for a redis cache along with {@link PagedResponse} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listByRedisCacheSinglePageAsync( @@ -137,7 +135,8 @@ private Mono> listByRedisCacheSinglePage * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the private link resources that need to be created for a redis cache. + * @return the private link resources that need to be created for a redis cache along with {@link PagedResponse} on + * successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listByRedisCacheSinglePageAsync( @@ -186,7 +185,8 @@ private Mono> listByRedisCacheSinglePage * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the private link resources that need to be created for a redis cache. + * @return the private link resources that need to be created for a redis cache as paginated response with {@link + * PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedFlux listByRedisCacheAsync(String resourceGroupName, String cacheName) { @@ -202,7 +202,8 @@ public PagedFlux listByRedisCacheAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the private link resources that need to be created for a redis cache. + * @return the private link resources that need to be created for a redis cache as paginated response with {@link + * PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) private PagedFlux listByRedisCacheAsync( @@ -218,7 +219,8 @@ private PagedFlux listByRedisCacheAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the private link resources that need to be created for a redis cache. + * @return the private link resources that need to be created for a redis cache as paginated response with {@link + * PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable listByRedisCache(String resourceGroupName, String cacheName) { @@ -234,7 +236,8 @@ public PagedIterable listByRedisCache(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the private link resources that need to be created for a redis cache. + * @return the private link resources that need to be created for a redis cache as paginated response with {@link + * PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable listByRedisCache( diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/RedisCacheImpl.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/RedisCacheImpl.java index b734d4b1dda0e..74cee1e0bbb9d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/RedisCacheImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/RedisCacheImpl.java @@ -20,6 +20,7 @@ import com.azure.resourcemanager.redis.models.RedisAccessKeys; import com.azure.resourcemanager.redis.models.RedisCache; import com.azure.resourcemanager.redis.models.RedisCachePremium; +import com.azure.resourcemanager.redis.models.RedisCommonPropertiesRedisConfiguration; import com.azure.resourcemanager.redis.models.RedisCreateParameters; import com.azure.resourcemanager.redis.models.RedisFirewallRule; import com.azure.resourcemanager.redis.models.RedisKeyType; @@ -153,7 +154,8 @@ public TlsVersion minimumTlsVersion() { @Override public Map redisConfiguration() { - return Collections.unmodifiableMap(this.innerModel().redisConfiguration()); + return Collections.unmodifiableMap( + ConfigurationUtils.toMap(this.innerModel().redisConfiguration())); } @Override @@ -251,9 +253,9 @@ public RedisCacheImpl withoutNonSslPort() { @Override public RedisCacheImpl withRedisConfiguration(Map redisConfiguration) { if (isInCreateMode()) { - createParameters.withRedisConfiguration(redisConfiguration); + createParameters.withRedisConfiguration(ConfigurationUtils.toConfiguration(redisConfiguration)); } else { - updateParameters.withRedisConfiguration(redisConfiguration); + updateParameters.withRedisConfiguration(ConfigurationUtils.toConfiguration(redisConfiguration)); } return this; } @@ -262,14 +264,14 @@ public RedisCacheImpl withRedisConfiguration(Map redisConfigurat public RedisCacheImpl withRedisConfiguration(String key, String value) { if (isInCreateMode()) { if (createParameters.redisConfiguration() == null) { - createParameters.withRedisConfiguration(new TreeMap<>()); + createParameters.withRedisConfiguration(new RedisCommonPropertiesRedisConfiguration()); } - createParameters.redisConfiguration().put(key, value); + ConfigurationUtils.putConfiguration(createParameters.redisConfiguration(), key, value); } else { if (updateParameters.redisConfiguration() == null) { - updateParameters.withRedisConfiguration(new TreeMap<>()); + updateParameters.withRedisConfiguration(new RedisCommonPropertiesRedisConfiguration()); } - updateParameters.redisConfiguration().put(key, value); + ConfigurationUtils.putConfiguration(updateParameters.redisConfiguration(), key, value); } return this; } @@ -313,16 +315,14 @@ public RedisCacheImpl withoutFirewallRule(String name) { @Override public RedisCacheImpl withoutRedisConfiguration() { if (updateParameters.redisConfiguration() != null) { - updateParameters.redisConfiguration().clear(); + updateParameters.withRedisConfiguration(new RedisCommonPropertiesRedisConfiguration()); } return this; } @Override public RedisCacheImpl withoutRedisConfiguration(String key) { - if (updateParameters.redisConfiguration() != null) { - updateParameters.redisConfiguration().remove(key); - } + ConfigurationUtils.removeConfiguration(updateParameters.redisConfiguration(), (key)); return this; } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/RedisClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/RedisClientImpl.java index 39447427e2e11..596ebb4a1fb50 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/RedisClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/RedisClientImpl.java @@ -31,7 +31,6 @@ import com.azure.core.management.polling.PollResult; import com.azure.core.util.Context; import com.azure.core.util.FluxUtil; -import com.azure.core.util.logging.ClientLogger; import com.azure.core.util.polling.PollerFlux; import com.azure.core.util.polling.SyncPoller; import com.azure.resourcemanager.redis.fluent.RedisClient; @@ -61,8 +60,6 @@ public final class RedisClientImpl InnerSupportsListing, InnerSupportsDelete, RedisClient { - private final ClientLogger logger = new ClientLogger(RedisClientImpl.class); - /** The proxy service used to perform REST calls. */ private final RedisService service; @@ -313,7 +310,7 @@ Mono> listBySubscriptionNext( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> checkNameAvailabilityWithResponseAsync(CheckNameAvailabilityParameters parameters) { @@ -358,7 +355,7 @@ public Mono> checkNameAvailabilityWithResponseAsync(CheckNameAvai * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> checkNameAvailabilityWithResponseAsync( @@ -400,7 +397,7 @@ private Mono> checkNameAvailabilityWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono checkNameAvailabilityAsync(CheckNameAvailabilityParameters parameters) { @@ -430,7 +427,7 @@ public void checkNameAvailability(CheckNameAvailabilityParameters parameters) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response. + * @return the {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response checkNameAvailabilityWithResponse( @@ -447,7 +444,8 @@ public Response checkNameAvailabilityWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return any upgrade notifications for a Redis cache. + * @return any upgrade notifications for a Redis cache along with {@link PagedResponse} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listUpgradeNotificationsSinglePageAsync( @@ -507,7 +505,8 @@ private Mono> listUpgradeNotificationsSi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return any upgrade notifications for a Redis cache. + * @return any upgrade notifications for a Redis cache along with {@link PagedResponse} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listUpgradeNotificationsSinglePageAsync( @@ -563,7 +562,7 @@ private Mono> listUpgradeNotificationsSi * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return any upgrade notifications for a Redis cache. + * @return any upgrade notifications for a Redis cache as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedFlux listUpgradeNotificationsAsync( @@ -583,7 +582,7 @@ public PagedFlux listUpgradeNotificationsAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return any upgrade notifications for a Redis cache. + * @return any upgrade notifications for a Redis cache as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) private PagedFlux listUpgradeNotificationsAsync( @@ -602,7 +601,7 @@ private PagedFlux listUpgradeNotificationsAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return any upgrade notifications for a Redis cache. + * @return any upgrade notifications for a Redis cache as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable listUpgradeNotifications( @@ -620,7 +619,7 @@ public PagedIterable listUpgradeNotifications( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return any upgrade notifications for a Redis cache. + * @return any upgrade notifications for a Redis cache as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable listUpgradeNotifications( @@ -637,7 +636,8 @@ public PagedIterable listUpgradeNotifications( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> createWithResponseAsync( @@ -693,7 +693,8 @@ public Mono>> createWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> createWithResponseAsync( @@ -745,9 +746,9 @@ private Mono>> createWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return the {@link PollerFlux} for polling of a single Redis item in List or Get Operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, RedisResourceInner> beginCreateAsync( String resourceGroupName, String name, RedisCreateParameters parameters) { Mono>> mono = createWithResponseAsync(resourceGroupName, name, parameters); @@ -771,9 +772,9 @@ public PollerFlux, RedisResourceInner> beginCreat * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return the {@link PollerFlux} for polling of a single Redis item in List or Get Operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, RedisResourceInner> beginCreateAsync( String resourceGroupName, String name, RedisCreateParameters parameters, Context context) { context = this.client.mergeContext(context); @@ -793,9 +794,9 @@ private PollerFlux, RedisResourceInner> beginCrea * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return the {@link SyncPoller} for polling of a single Redis item in List or Get Operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, RedisResourceInner> beginCreate( String resourceGroupName, String name, RedisCreateParameters parameters) { return beginCreateAsync(resourceGroupName, name, parameters).getSyncPoller(); @@ -811,9 +812,9 @@ public SyncPoller, RedisResourceInner> beginCreat * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return the {@link SyncPoller} for polling of a single Redis item in List or Get Operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, RedisResourceInner> beginCreate( String resourceGroupName, String name, RedisCreateParameters parameters, Context context) { return beginCreateAsync(resourceGroupName, name, parameters, context).getSyncPoller(); @@ -828,7 +829,7 @@ public SyncPoller, RedisResourceInner> beginCreat * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono createAsync( @@ -848,7 +849,7 @@ public Mono createAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono createAsync( @@ -901,7 +902,8 @@ public RedisResourceInner create( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> updateWithResponseAsync( @@ -957,7 +959,8 @@ public Mono> updateWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation along with {@link Response} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> updateWithResponseAsync( @@ -1009,7 +1012,7 @@ private Mono> updateWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono updateAsync( @@ -1051,7 +1054,7 @@ public RedisResourceInner update(String resourceGroupName, String name, RedisUpd * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a single Redis item in List or Get Operation. + * @return a single Redis item in List or Get Operation along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response updateWithResponse( @@ -1067,7 +1070,7 @@ public Response updateWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> deleteWithResponseAsync(String resourceGroupName, String name) { @@ -1115,7 +1118,7 @@ public Mono>> deleteWithResponseAsync(String resourceG * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> deleteWithResponseAsync( @@ -1160,9 +1163,9 @@ private Mono>> deleteWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link PollerFlux} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, Void> beginDeleteAsync(String resourceGroupName, String name) { Mono>> mono = deleteWithResponseAsync(resourceGroupName, name); return this @@ -1180,9 +1183,9 @@ public PollerFlux, Void> beginDeleteAsync(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link PollerFlux} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, Void> beginDeleteAsync( String resourceGroupName, String name, Context context) { context = this.client.mergeContext(context); @@ -1200,9 +1203,9 @@ private PollerFlux, Void> beginDeleteAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginDelete(String resourceGroupName, String name) { return beginDeleteAsync(resourceGroupName, name).getSyncPoller(); } @@ -1216,9 +1219,9 @@ public SyncPoller, Void> beginDelete(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginDelete(String resourceGroupName, String name, Context context) { return beginDeleteAsync(resourceGroupName, name, context).getSyncPoller(); } @@ -1231,7 +1234,7 @@ public SyncPoller, Void> beginDelete(String resourceGroupName, * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono deleteAsync(String resourceGroupName, String name) { @@ -1247,7 +1250,7 @@ public Mono deleteAsync(String resourceGroupName, String name) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono deleteAsync(String resourceGroupName, String name, Context context) { @@ -1291,7 +1294,8 @@ public void delete(String resourceGroupName, String name, Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a Redis cache (resource description). + * @return a Redis cache (resource description) along with {@link Response} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> getByResourceGroupWithResponseAsync( @@ -1340,7 +1344,8 @@ public Mono> getByResourceGroupWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a Redis cache (resource description). + * @return a Redis cache (resource description) along with {@link Response} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> getByResourceGroupWithResponseAsync( @@ -1385,7 +1390,7 @@ private Mono> getByResourceGroupWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a Redis cache (resource description). + * @return a Redis cache (resource description) on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono getByResourceGroupAsync(String resourceGroupName, String name) { @@ -1424,7 +1429,7 @@ public RedisResourceInner getByResourceGroup(String resourceGroupName, String na * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return a Redis cache (resource description). + * @return a Redis cache (resource description) along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response getByResourceGroupWithResponse( @@ -1439,7 +1444,8 @@ public Response getByResourceGroupWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation along with {@link PagedResponse} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listByResourceGroupSinglePageAsync(String resourceGroupName) { @@ -1491,7 +1497,8 @@ private Mono> listByResourceGroupSinglePageAsy * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation along with {@link PagedResponse} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listByResourceGroupSinglePageAsync( @@ -1540,7 +1547,7 @@ private Mono> listByResourceGroupSinglePageAsy * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedFlux listByResourceGroupAsync(String resourceGroupName) { @@ -1557,7 +1564,7 @@ public PagedFlux listByResourceGroupAsync(String resourceGro * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) private PagedFlux listByResourceGroupAsync(String resourceGroupName, Context context) { @@ -1573,7 +1580,7 @@ private PagedFlux listByResourceGroupAsync(String resourceGr * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable listByResourceGroup(String resourceGroupName) { @@ -1588,7 +1595,7 @@ public PagedIterable listByResourceGroup(String resourceGrou * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable listByResourceGroup(String resourceGroupName, Context context) { @@ -1600,7 +1607,8 @@ public PagedIterable listByResourceGroup(String resourceGrou * * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all Redis caches in the specified subscription. + * @return all Redis caches in the specified subscription along with {@link PagedResponse} on successful completion + * of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listSinglePageAsync() { @@ -1646,7 +1654,8 @@ private Mono> listSinglePageAsync() { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all Redis caches in the specified subscription. + * @return all Redis caches in the specified subscription along with {@link PagedResponse} on successful completion + * of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listSinglePageAsync(Context context) { @@ -1687,7 +1696,7 @@ private Mono> listSinglePageAsync(Context cont * * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all Redis caches in the specified subscription. + * @return all Redis caches in the specified subscription as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedFlux listAsync() { @@ -1702,7 +1711,7 @@ public PagedFlux listAsync() { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all Redis caches in the specified subscription. + * @return all Redis caches in the specified subscription as paginated response with {@link PagedFlux}. */ @ServiceMethod(returns = ReturnType.COLLECTION) private PagedFlux listAsync(Context context) { @@ -1715,7 +1724,7 @@ private PagedFlux listAsync(Context context) { * * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all Redis caches in the specified subscription. + * @return all Redis caches in the specified subscription as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable list() { @@ -1729,7 +1738,7 @@ public PagedIterable list() { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return all Redis caches in the specified subscription. + * @return all Redis caches in the specified subscription as paginated response with {@link PagedIterable}. */ @ServiceMethod(returns = ReturnType.COLLECTION) public PagedIterable list(Context context) { @@ -1744,7 +1753,7 @@ public PagedIterable list(Context context) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> listKeysWithResponseAsync(String resourceGroupName, String name) { @@ -1792,7 +1801,7 @@ public Mono> listKeysWithResponseAsync(String res * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listKeysWithResponseAsync( @@ -1837,7 +1846,7 @@ private Mono> listKeysWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono listKeysAsync(String resourceGroupName, String name) { @@ -1876,7 +1885,7 @@ public RedisAccessKeysInner listKeys(String resourceGroupName, String name) { * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response listKeysWithResponse(String resourceGroupName, String name, Context context) { @@ -1892,7 +1901,7 @@ public Response listKeysWithResponse(String resourceGroupN * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> regenerateKeyWithResponseAsync( @@ -1948,7 +1957,7 @@ public Mono> regenerateKeyWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys along with {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> regenerateKeyWithResponseAsync( @@ -2000,7 +2009,7 @@ private Mono> regenerateKeyWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono regenerateKeyAsync( @@ -2043,7 +2052,7 @@ public RedisAccessKeysInner regenerateKey( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return redis cache access keys. + * @return redis cache access keys along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response regenerateKeyWithResponse( @@ -2061,7 +2070,8 @@ public Response regenerateKeyWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to force reboot for Redis cache. + * @return response to force reboot for Redis cache along with {@link Response} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono> forceRebootWithResponseAsync( @@ -2118,7 +2128,8 @@ public Mono> forceRebootWithResponseAsyn * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to force reboot for Redis cache. + * @return response to force reboot for Redis cache along with {@link Response} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> forceRebootWithResponseAsync( @@ -2171,7 +2182,7 @@ private Mono> forceRebootWithResponseAsy * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to force reboot for Redis cache. + * @return response to force reboot for Redis cache on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono forceRebootAsync( @@ -2216,7 +2227,7 @@ public RedisForceRebootResponseInner forceReboot( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return response to force reboot for Redis cache. + * @return response to force reboot for Redis cache along with {@link Response}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Response forceRebootWithResponse( @@ -2233,7 +2244,7 @@ public Response forceRebootWithResponse( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> importDataWithResponseAsync( @@ -2289,7 +2300,7 @@ public Mono>> importDataWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> importDataWithResponseAsync( @@ -2341,9 +2352,9 @@ private Mono>> importDataWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link PollerFlux} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, Void> beginImportDataAsync( String resourceGroupName, String name, ImportRdbParameters parameters) { Mono>> mono = importDataWithResponseAsync(resourceGroupName, name, parameters); @@ -2363,9 +2374,9 @@ public PollerFlux, Void> beginImportDataAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link PollerFlux} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, Void> beginImportDataAsync( String resourceGroupName, String name, ImportRdbParameters parameters, Context context) { context = this.client.mergeContext(context); @@ -2385,9 +2396,9 @@ private PollerFlux, Void> beginImportDataAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginImportData( String resourceGroupName, String name, ImportRdbParameters parameters) { return beginImportDataAsync(resourceGroupName, name, parameters).getSyncPoller(); @@ -2403,9 +2414,9 @@ public SyncPoller, Void> beginImportData( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginImportData( String resourceGroupName, String name, ImportRdbParameters parameters, Context context) { return beginImportDataAsync(resourceGroupName, name, parameters, context).getSyncPoller(); @@ -2420,7 +2431,7 @@ public SyncPoller, Void> beginImportData( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono importDataAsync(String resourceGroupName, String name, ImportRdbParameters parameters) { @@ -2439,7 +2450,7 @@ public Mono importDataAsync(String resourceGroupName, String name, ImportR * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono importDataAsync( @@ -2489,7 +2500,7 @@ public void importData(String resourceGroupName, String name, ImportRdbParameter * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono>> exportDataWithResponseAsync( @@ -2545,7 +2556,7 @@ public Mono>> exportDataWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link Response} on successful completion of {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono>> exportDataWithResponseAsync( @@ -2597,9 +2608,9 @@ private Mono>> exportDataWithResponseAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link PollerFlux} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public PollerFlux, Void> beginExportDataAsync( String resourceGroupName, String name, ExportRdbParameters parameters) { Mono>> mono = exportDataWithResponseAsync(resourceGroupName, name, parameters); @@ -2619,9 +2630,9 @@ public PollerFlux, Void> beginExportDataAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link PollerFlux} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) private PollerFlux, Void> beginExportDataAsync( String resourceGroupName, String name, ExportRdbParameters parameters, Context context) { context = this.client.mergeContext(context); @@ -2641,9 +2652,9 @@ private PollerFlux, Void> beginExportDataAsync( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginExportData( String resourceGroupName, String name, ExportRdbParameters parameters) { return beginExportDataAsync(resourceGroupName, name, parameters).getSyncPoller(); @@ -2659,9 +2670,9 @@ public SyncPoller, Void> beginExportData( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return the {@link SyncPoller} for polling of long-running operation. */ - @ServiceMethod(returns = ReturnType.SINGLE) + @ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION) public SyncPoller, Void> beginExportData( String resourceGroupName, String name, ExportRdbParameters parameters, Context context) { return beginExportDataAsync(resourceGroupName, name, parameters, context).getSyncPoller(); @@ -2676,7 +2687,7 @@ public SyncPoller, Void> beginExportData( * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) public Mono exportDataAsync(String resourceGroupName, String name, ExportRdbParameters parameters) { @@ -2695,7 +2706,7 @@ public Mono exportDataAsync(String resourceGroupName, String name, ExportR * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the completion. + * @return A {@link Mono} that completes when a successful response is received. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono exportDataAsync( @@ -2743,7 +2754,8 @@ public void exportData(String resourceGroupName, String name, ExportRdbParameter * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of listUpgradeNotifications. + * @return the response of listUpgradeNotifications along with {@link PagedResponse} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listUpgradeNotificationsNextSinglePageAsync(String nextLink) { @@ -2780,7 +2792,8 @@ private Mono> listUpgradeNotificationsNe * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of listUpgradeNotifications. + * @return the response of listUpgradeNotifications along with {@link PagedResponse} on successful completion of + * {@link Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listUpgradeNotificationsNextSinglePageAsync( @@ -2816,7 +2829,8 @@ private Mono> listUpgradeNotificationsNe * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation along with {@link PagedResponse} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listByResourceGroupNextSinglePageAsync(String nextLink) { @@ -2853,7 +2867,8 @@ private Mono> listByResourceGroupNextSinglePag * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation along with {@link PagedResponse} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listByResourceGroupNextSinglePageAsync( @@ -2889,7 +2904,8 @@ private Mono> listByResourceGroupNextSinglePag * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation along with {@link PagedResponse} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listBySubscriptionNextSinglePageAsync(String nextLink) { @@ -2926,7 +2942,8 @@ private Mono> listBySubscriptionNextSinglePage * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. - * @return the response of list Redis operation. + * @return the response of list Redis operation along with {@link PagedResponse} on successful completion of {@link + * Mono}. */ @ServiceMethod(returns = ReturnType.SINGLE) private Mono> listBySubscriptionNextSinglePageAsync( diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/RedisManagementClientImpl.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/RedisManagementClientImpl.java index 5af5c3a6b01fa..c997e0bb7c0af 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/RedisManagementClientImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/implementation/RedisManagementClientImpl.java @@ -7,8 +7,8 @@ import com.azure.core.annotation.ServiceClient; import com.azure.core.http.HttpPipeline; import com.azure.core.management.AzureEnvironment; -import com.azure.core.util.logging.ClientLogger; import com.azure.core.util.serializer.SerializerAdapter; +import com.azure.resourcemanager.redis.fluent.AsyncOperationStatusClient; import com.azure.resourcemanager.redis.fluent.FirewallRulesClient; import com.azure.resourcemanager.redis.fluent.LinkedServersClient; import com.azure.resourcemanager.redis.fluent.OperationsClient; @@ -23,8 +23,6 @@ /** Initializes a new instance of the RedisManagementClientImpl type. */ @ServiceClient(builder = RedisManagementClientBuilder.class) public final class RedisManagementClientImpl extends AzureServiceClient implements RedisManagementClient { - private final ClientLogger logger = new ClientLogger(RedisManagementClientImpl.class); - /** * Gets subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms * part of the URI for every service call. @@ -185,6 +183,18 @@ public PrivateLinkResourcesClient getPrivateLinkResources() { return this.privateLinkResources; } + /** The AsyncOperationStatusClient object to access its operations. */ + private final AsyncOperationStatusClient asyncOperationStatus; + + /** + * Gets the AsyncOperationStatusClient object to access its operations. + * + * @return the AsyncOperationStatusClient object. + */ + public AsyncOperationStatusClient getAsyncOperationStatus() { + return this.asyncOperationStatus; + } + /** * Initializes an instance of RedisManagementClient client. * @@ -209,7 +219,7 @@ public PrivateLinkResourcesClient getPrivateLinkResources() { this.defaultPollInterval = defaultPollInterval; this.subscriptionId = subscriptionId; this.endpoint = endpoint; - this.apiVersion = "2020-12-01"; + this.apiVersion = "2021-06-01"; this.operations = new OperationsClientImpl(this); this.redis = new RedisClientImpl(this); this.firewallRules = new FirewallRulesClientImpl(this); @@ -217,5 +227,6 @@ public PrivateLinkResourcesClient getPrivateLinkResources() { this.linkedServers = new LinkedServersClientImpl(this); this.privateEndpointConnections = new PrivateEndpointConnectionsClientImpl(this); this.privateLinkResources = new PrivateLinkResourcesClientImpl(this); + this.asyncOperationStatus = new AsyncOperationStatusClientImpl(this); } } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/CheckNameAvailabilityParameters.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/CheckNameAvailabilityParameters.java index c86c3b741416a..215337249752c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/CheckNameAvailabilityParameters.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/CheckNameAvailabilityParameters.java @@ -6,14 +6,11 @@ import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Parameters body to pass for resource name availability check. */ @Fluent public final class CheckNameAvailabilityParameters { - @JsonIgnore private final ClientLogger logger = new ClientLogger(CheckNameAvailabilityParameters.class); - /* * Resource name. */ @@ -76,16 +73,18 @@ public CheckNameAvailabilityParameters withType(String type) { */ public void validate() { if (name() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property name in model CheckNameAvailabilityParameters")); } if (type() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property type in model CheckNameAvailabilityParameters")); } } + + private static final ClientLogger LOGGER = new ClientLogger(CheckNameAvailabilityParameters.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ErrorAdditionalInfo.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ErrorAdditionalInfo.java new file mode 100644 index 0000000000000..729ae7104cc2d --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ErrorAdditionalInfo.java @@ -0,0 +1,50 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.models; + +import com.azure.core.annotation.Immutable; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** The resource management error additional info. */ +@Immutable +public final class ErrorAdditionalInfo { + /* + * The additional info type. + */ + @JsonProperty(value = "type", access = JsonProperty.Access.WRITE_ONLY) + private String type; + + /* + * The additional info. + */ + @JsonProperty(value = "info", access = JsonProperty.Access.WRITE_ONLY) + private Object info; + + /** + * Get the type property: The additional info type. + * + * @return the type value. + */ + public String type() { + return this.type; + } + + /** + * Get the info property: The additional info. + * + * @return the info value. + */ + public Object info() { + return this.info; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ErrorDetail.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ErrorDetail.java new file mode 100644 index 0000000000000..4e6b2ce600aa5 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ErrorDetail.java @@ -0,0 +1,102 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.models; + +import com.azure.core.annotation.Immutable; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.util.List; + +/** The error detail. */ +@Immutable +public final class ErrorDetail { + /* + * The error code. + */ + @JsonProperty(value = "code", access = JsonProperty.Access.WRITE_ONLY) + private String code; + + /* + * The error message. + */ + @JsonProperty(value = "message", access = JsonProperty.Access.WRITE_ONLY) + private String message; + + /* + * The error target. + */ + @JsonProperty(value = "target", access = JsonProperty.Access.WRITE_ONLY) + private String target; + + /* + * The error details. + */ + @JsonProperty(value = "details", access = JsonProperty.Access.WRITE_ONLY) + private List details; + + /* + * The error additional info. + */ + @JsonProperty(value = "additionalInfo", access = JsonProperty.Access.WRITE_ONLY) + private List additionalInfo; + + /** + * Get the code property: The error code. + * + * @return the code value. + */ + public String code() { + return this.code; + } + + /** + * Get the message property: The error message. + * + * @return the message value. + */ + public String message() { + return this.message; + } + + /** + * Get the target property: The error target. + * + * @return the target value. + */ + public String target() { + return this.target; + } + + /** + * Get the details property: The error details. + * + * @return the details value. + */ + public List details() { + return this.details; + } + + /** + * Get the additionalInfo property: The error additional info. + * + * @return the additionalInfo value. + */ + public List additionalInfo() { + return this.additionalInfo; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + if (details() != null) { + details().forEach(e -> e.validate()); + } + if (additionalInfo() != null) { + additionalInfo().forEach(e -> e.validate()); + } + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ExportRdbParameters.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ExportRdbParameters.java index ff996e64a55fc..9b640fb58b4a3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ExportRdbParameters.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ExportRdbParameters.java @@ -6,14 +6,11 @@ import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Parameters for Redis export operation. */ @Fluent public final class ExportRdbParameters { - @JsonIgnore private final ClientLogger logger = new ClientLogger(ExportRdbParameters.class); - /* * File format. */ @@ -99,14 +96,16 @@ public ExportRdbParameters withContainer(String container) { */ public void validate() { if (prefix() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException("Missing required property prefix in model ExportRdbParameters")); } if (container() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException("Missing required property container in model ExportRdbParameters")); } } + + private static final ClientLogger LOGGER = new ClientLogger(ExportRdbParameters.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ImportRdbParameters.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ImportRdbParameters.java index bf0e6caa6c061..ea3735a927d64 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ImportRdbParameters.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ImportRdbParameters.java @@ -6,15 +6,12 @@ import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** Parameters for Redis import operation. */ @Fluent public final class ImportRdbParameters { - @JsonIgnore private final ClientLogger logger = new ClientLogger(ImportRdbParameters.class); - /* * File format. */ @@ -74,9 +71,11 @@ public ImportRdbParameters withFiles(List files) { */ public void validate() { if (files() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException("Missing required property files in model ImportRdbParameters")); } } + + private static final ClientLogger LOGGER = new ClientLogger(ImportRdbParameters.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ManagedServiceIdentity.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ManagedServiceIdentity.java new file mode 100644 index 0000000000000..f7539a26936cf --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ManagedServiceIdentity.java @@ -0,0 +1,141 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.models; + +import com.azure.core.annotation.Fluent; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.util.Map; +import java.util.UUID; + +/** Managed service identity (system assigned and/or user assigned identities). */ +@Fluent +public class ManagedServiceIdentity { + /* + * The service principal ID of the system assigned identity. This property + * will only be provided for a system assigned identity. + */ + @JsonProperty(value = "principalId", access = JsonProperty.Access.WRITE_ONLY) + private UUID principalId; + + /* + * The tenant ID of the system assigned identity. This property will only + * be provided for a system assigned identity. + */ + @JsonProperty(value = "tenantId", access = JsonProperty.Access.WRITE_ONLY) + private UUID tenantId; + + /* + * Type of managed service identity (where both SystemAssigned and + * UserAssigned types are allowed). + */ + @JsonProperty(value = "type", required = true) + private ManagedServiceIdentityType type; + + /* + * The set of user assigned identities associated with the resource. The + * userAssignedIdentities dictionary keys will be ARM resource ids in the + * form: + * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. + * The dictionary values can be empty objects ({}) in requests. + */ + @JsonProperty(value = "userAssignedIdentities") + @JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS) + private Map userAssignedIdentities; + + /** + * Get the principalId property: The service principal ID of the system assigned identity. This property will only + * be provided for a system assigned identity. + * + * @return the principalId value. + */ + public UUID principalId() { + return this.principalId; + } + + /** + * Get the tenantId property: The tenant ID of the system assigned identity. This property will only be provided for + * a system assigned identity. + * + * @return the tenantId value. + */ + public UUID tenantId() { + return this.tenantId; + } + + /** + * Get the type property: Type of managed service identity (where both SystemAssigned and UserAssigned types are + * allowed). + * + * @return the type value. + */ + public ManagedServiceIdentityType type() { + return this.type; + } + + /** + * Set the type property: Type of managed service identity (where both SystemAssigned and UserAssigned types are + * allowed). + * + * @param type the type value to set. + * @return the ManagedServiceIdentity object itself. + */ + public ManagedServiceIdentity withType(ManagedServiceIdentityType type) { + this.type = type; + return this; + } + + /** + * Get the userAssignedIdentities property: The set of user assigned identities associated with the resource. The + * userAssignedIdentities dictionary keys will be ARM resource ids in the form: + * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. + * The dictionary values can be empty objects ({}) in requests. + * + * @return the userAssignedIdentities value. + */ + public Map userAssignedIdentities() { + return this.userAssignedIdentities; + } + + /** + * Set the userAssignedIdentities property: The set of user assigned identities associated with the resource. The + * userAssignedIdentities dictionary keys will be ARM resource ids in the form: + * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. + * The dictionary values can be empty objects ({}) in requests. + * + * @param userAssignedIdentities the userAssignedIdentities value to set. + * @return the ManagedServiceIdentity object itself. + */ + public ManagedServiceIdentity withUserAssignedIdentities(Map userAssignedIdentities) { + this.userAssignedIdentities = userAssignedIdentities; + return this; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + if (type() == null) { + throw LOGGER + .logExceptionAsError( + new IllegalArgumentException("Missing required property type in model ManagedServiceIdentity")); + } + if (userAssignedIdentities() != null) { + userAssignedIdentities() + .values() + .forEach( + e -> { + if (e != null) { + e.validate(); + } + }); + } + } + + private static final ClientLogger LOGGER = new ClientLogger(ManagedServiceIdentity.class); +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ManagedServiceIdentityType.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ManagedServiceIdentityType.java new file mode 100644 index 0000000000000..14f8b833bb5b2 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ManagedServiceIdentityType.java @@ -0,0 +1,41 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.models; + +import com.azure.core.util.ExpandableStringEnum; +import com.fasterxml.jackson.annotation.JsonCreator; +import java.util.Collection; + +/** Defines values for ManagedServiceIdentityType. */ +public final class ManagedServiceIdentityType extends ExpandableStringEnum { + /** Static value None for ManagedServiceIdentityType. */ + public static final ManagedServiceIdentityType NONE = fromString("None"); + + /** Static value SystemAssigned for ManagedServiceIdentityType. */ + public static final ManagedServiceIdentityType SYSTEM_ASSIGNED = fromString("SystemAssigned"); + + /** Static value UserAssigned for ManagedServiceIdentityType. */ + public static final ManagedServiceIdentityType USER_ASSIGNED = fromString("UserAssigned"); + + /** Static value SystemAssigned, UserAssigned for ManagedServiceIdentityType. */ + public static final ManagedServiceIdentityType SYSTEM_ASSIGNED_USER_ASSIGNED = + fromString("SystemAssigned, UserAssigned"); + + /** + * Creates or finds a ManagedServiceIdentityType from its string representation. + * + * @param name a name to look for. + * @return the corresponding ManagedServiceIdentityType. + */ + @JsonCreator + public static ManagedServiceIdentityType fromString(String name) { + return fromString(name, ManagedServiceIdentityType.class); + } + + /** @return known ManagedServiceIdentityType values. */ + public static Collection values() { + return values(ManagedServiceIdentityType.class); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/NotificationListResponse.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/NotificationListResponse.java index 7801083e97d85..819f6b3b5858b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/NotificationListResponse.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/NotificationListResponse.java @@ -5,17 +5,13 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.models.UpgradeNotificationInner; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** The response of listUpgradeNotifications. */ @Fluent public final class NotificationListResponse { - @JsonIgnore private final ClientLogger logger = new ClientLogger(NotificationListResponse.class); - /* * List of all notifications. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/OperationDisplay.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/OperationDisplay.java index 45f06660ba25b..2442967cc55c4 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/OperationDisplay.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/OperationDisplay.java @@ -5,15 +5,11 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** The object that describes the operation. */ @Fluent public final class OperationDisplay { - @JsonIgnore private final ClientLogger logger = new ClientLogger(OperationDisplay.class); - /* * Friendly name of the resource provider */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/OperationListResult.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/OperationListResult.java index 333f849e9e260..e47637dee4159 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/OperationListResult.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/OperationListResult.java @@ -5,9 +5,7 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.models.OperationInner; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; @@ -17,8 +15,6 @@ */ @Fluent public final class OperationListResult { - @JsonIgnore private final ClientLogger logger = new ClientLogger(OperationListResult.class); - /* * List of operations supported by the resource provider. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/OperationStatusResult.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/OperationStatusResult.java new file mode 100644 index 0000000000000..15efe00e98a36 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/OperationStatusResult.java @@ -0,0 +1,244 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.models; + +import com.azure.core.annotation.Fluent; +import com.azure.core.util.logging.ClientLogger; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.time.OffsetDateTime; +import java.util.List; + +/** The current status of an async operation. */ +@Fluent +public class OperationStatusResult { + /* + * Fully qualified ID for the async operation. + */ + @JsonProperty(value = "id") + private String id; + + /* + * Name of the async operation. + */ + @JsonProperty(value = "name") + private String name; + + /* + * Operation status. + */ + @JsonProperty(value = "status", required = true) + private String status; + + /* + * Percent of the operation that is complete. + */ + @JsonProperty(value = "percentComplete") + private Float percentComplete; + + /* + * The start time of the operation. + */ + @JsonProperty(value = "startTime") + private OffsetDateTime startTime; + + /* + * The end time of the operation. + */ + @JsonProperty(value = "endTime") + private OffsetDateTime endTime; + + /* + * The operations list. + */ + @JsonProperty(value = "operations") + private List operations; + + /* + * If present, details of the operation error. + */ + @JsonProperty(value = "error") + private ErrorDetail error; + + /** + * Get the id property: Fully qualified ID for the async operation. + * + * @return the id value. + */ + public String id() { + return this.id; + } + + /** + * Set the id property: Fully qualified ID for the async operation. + * + * @param id the id value to set. + * @return the OperationStatusResult object itself. + */ + public OperationStatusResult withId(String id) { + this.id = id; + return this; + } + + /** + * Get the name property: Name of the async operation. + * + * @return the name value. + */ + public String name() { + return this.name; + } + + /** + * Set the name property: Name of the async operation. + * + * @param name the name value to set. + * @return the OperationStatusResult object itself. + */ + public OperationStatusResult withName(String name) { + this.name = name; + return this; + } + + /** + * Get the status property: Operation status. + * + * @return the status value. + */ + public String status() { + return this.status; + } + + /** + * Set the status property: Operation status. + * + * @param status the status value to set. + * @return the OperationStatusResult object itself. + */ + public OperationStatusResult withStatus(String status) { + this.status = status; + return this; + } + + /** + * Get the percentComplete property: Percent of the operation that is complete. + * + * @return the percentComplete value. + */ + public Float percentComplete() { + return this.percentComplete; + } + + /** + * Set the percentComplete property: Percent of the operation that is complete. + * + * @param percentComplete the percentComplete value to set. + * @return the OperationStatusResult object itself. + */ + public OperationStatusResult withPercentComplete(Float percentComplete) { + this.percentComplete = percentComplete; + return this; + } + + /** + * Get the startTime property: The start time of the operation. + * + * @return the startTime value. + */ + public OffsetDateTime startTime() { + return this.startTime; + } + + /** + * Set the startTime property: The start time of the operation. + * + * @param startTime the startTime value to set. + * @return the OperationStatusResult object itself. + */ + public OperationStatusResult withStartTime(OffsetDateTime startTime) { + this.startTime = startTime; + return this; + } + + /** + * Get the endTime property: The end time of the operation. + * + * @return the endTime value. + */ + public OffsetDateTime endTime() { + return this.endTime; + } + + /** + * Set the endTime property: The end time of the operation. + * + * @param endTime the endTime value to set. + * @return the OperationStatusResult object itself. + */ + public OperationStatusResult withEndTime(OffsetDateTime endTime) { + this.endTime = endTime; + return this; + } + + /** + * Get the operations property: The operations list. + * + * @return the operations value. + */ + public List operations() { + return this.operations; + } + + /** + * Set the operations property: The operations list. + * + * @param operations the operations value to set. + * @return the OperationStatusResult object itself. + */ + public OperationStatusResult withOperations(List operations) { + this.operations = operations; + return this; + } + + /** + * Get the error property: If present, details of the operation error. + * + * @return the error value. + */ + public ErrorDetail error() { + return this.error; + } + + /** + * Set the error property: If present, details of the operation error. + * + * @param error the error value to set. + * @return the OperationStatusResult object itself. + */ + public OperationStatusResult withError(ErrorDetail error) { + this.error = error; + return this; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + if (status() == null) { + throw LOGGER + .logExceptionAsError( + new IllegalArgumentException("Missing required property status in model OperationStatusResult")); + } + if (operations() != null) { + operations().forEach(e -> e.validate()); + } + if (error() != null) { + error().validate(); + } + } + + private static final ClientLogger LOGGER = new ClientLogger(OperationStatusResult.class); +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateEndpoint.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateEndpoint.java index 91989504353e6..5c9efb5847081 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateEndpoint.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateEndpoint.java @@ -5,15 +5,11 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Immutable; -import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** The Private Endpoint resource. */ @Immutable public final class PrivateEndpoint { - @JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateEndpoint.class); - /* * The ARM identifier for Private Endpoint */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateEndpointConnectionListResult.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateEndpointConnectionListResult.java index 50a3410c100ae..4f4be5dbd8968 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateEndpointConnectionListResult.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateEndpointConnectionListResult.java @@ -5,17 +5,13 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.models.PrivateEndpointConnectionInner; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** List of private endpoint connection associated with the specified storage account. */ @Fluent public final class PrivateEndpointConnectionListResult { - @JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateEndpointConnectionListResult.class); - /* * Array of private endpoint connections */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateLinkResourceListResult.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateLinkResourceListResult.java index e514c7a428034..d827d60feb0a5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateLinkResourceListResult.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateLinkResourceListResult.java @@ -5,17 +5,13 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.models.PrivateLinkResourceInner; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** A list of private link resources. */ @Fluent public final class PrivateLinkResourceListResult { - @JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateLinkResourceListResult.class); - /* * Array of private link resources */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateLinkServiceConnectionState.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateLinkServiceConnectionState.java index 88a780e222a94..430adba2a7590 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateLinkServiceConnectionState.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/PrivateLinkServiceConnectionState.java @@ -5,15 +5,11 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** A collection of information about the state of the connection between service consumer and provider. */ @Fluent public final class PrivateLinkServiceConnectionState { - @JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateLinkServiceConnectionState.class); - /* * Indicates whether the connection has been Approved/Rejected/Removed by * the owner of the service. diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisCommonProperties.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisCommonProperties.java index 12f48d27e149b..77dbfcf4e43b8 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisCommonProperties.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisCommonProperties.java @@ -5,8 +5,6 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Map; @@ -14,16 +12,13 @@ /** Create/Update/Get common properties of the redis cache. */ @Fluent public class RedisCommonProperties { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisCommonProperties.class); - /* * All Redis Settings. Few possible keys: * rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value * etc. */ @JsonProperty(value = "redisConfiguration") - @JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS) - private Map redisConfiguration; + private RedisCommonPropertiesRedisConfiguration redisConfiguration; /* * Redis version. Only major version will be used in PUT/PATCH request with @@ -86,7 +81,7 @@ public class RedisCommonProperties { * * @return the redisConfiguration value. */ - public Map redisConfiguration() { + public RedisCommonPropertiesRedisConfiguration redisConfiguration() { return this.redisConfiguration; } @@ -98,7 +93,7 @@ public Map redisConfiguration() { * @param redisConfiguration the redisConfiguration value to set. * @return the RedisCommonProperties object itself. */ - public RedisCommonProperties withRedisConfiguration(Map redisConfiguration) { + public RedisCommonProperties withRedisConfiguration(RedisCommonPropertiesRedisConfiguration redisConfiguration) { this.redisConfiguration = redisConfiguration; return this; } @@ -277,5 +272,8 @@ public RedisCommonProperties withPublicNetworkAccess(PublicNetworkAccess publicN * @throws IllegalArgumentException thrown if the instance is not valid. */ public void validate() { + if (redisConfiguration() != null) { + redisConfiguration().validate(); + } } } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisCommonPropertiesRedisConfiguration.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisCommonPropertiesRedisConfiguration.java new file mode 100644 index 0000000000000..f117fc552172b --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisCommonPropertiesRedisConfiguration.java @@ -0,0 +1,395 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.models; + +import com.azure.core.annotation.Fluent; +import com.fasterxml.jackson.annotation.JsonAnyGetter; +import com.fasterxml.jackson.annotation.JsonAnySetter; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.util.HashMap; +import java.util.Map; + +/** + * All Redis Settings. Few possible keys: + * rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value + * etc. + */ +@Fluent +public final class RedisCommonPropertiesRedisConfiguration { + /* + * Specifies whether the rdb backup is enabled + */ + @JsonProperty(value = "rdb-backup-enabled") + private String rdbBackupEnabled; + + /* + * Specifies the frequency for creating rdb backup + */ + @JsonProperty(value = "rdb-backup-frequency") + private String rdbBackupFrequency; + + /* + * Specifies the maximum number of snapshots for rdb backup + */ + @JsonProperty(value = "rdb-backup-max-snapshot-count") + private String rdbBackupMaxSnapshotCount; + + /* + * The storage account connection string for storing rdb file + */ + @JsonProperty(value = "rdb-storage-connection-string") + private String rdbStorageConnectionString; + + /* + * First storage account connection string + */ + @JsonProperty(value = "aof-storage-connection-string-0") + private String aofStorageConnectionString0; + + /* + * Second storage account connection string + */ + @JsonProperty(value = "aof-storage-connection-string-1") + private String aofStorageConnectionString1; + + /* + * Value in megabytes reserved for fragmentation per shard + */ + @JsonProperty(value = "maxfragmentationmemory-reserved") + private String maxfragmentationmemoryReserved; + + /* + * The eviction strategy used when your data won't fit within its memory + * limit. + */ + @JsonProperty(value = "maxmemory-policy") + private String maxmemoryPolicy; + + /* + * Value in megabytes reserved for non-cache usage per shard e.g. failover. + */ + @JsonProperty(value = "maxmemory-reserved") + private String maxmemoryReserved; + + /* + * Value in megabytes reserved for non-cache usage per shard e.g. failover. + */ + @JsonProperty(value = "maxmemory-delta") + private String maxmemoryDelta; + + /* + * The max clients config + */ + @JsonProperty(value = "maxclients", access = JsonProperty.Access.WRITE_ONLY) + private String maxclients; + + /* + * Preferred auth method to communicate to storage account used for data + * archive, specify SAS or ManagedIdentity, default value is SAS + */ + @JsonProperty(value = "preferred-data-archive-auth-method", access = JsonProperty.Access.WRITE_ONLY) + private String preferredDataArchiveAuthMethod; + + /* + * Preferred auth method to communicate to storage account used for data + * persistence, specify SAS or ManagedIdentity, default value is SAS + */ + @JsonProperty(value = "preferred-data-persistence-auth-method", access = JsonProperty.Access.WRITE_ONLY) + private String preferredDataPersistenceAuthMethod; + + /* + * Zonal Configuration + */ + @JsonProperty(value = "zonal-configuration", access = JsonProperty.Access.WRITE_ONLY) + private String zonalConfiguration; + + /* + * All Redis Settings. Few possible keys: + * rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value + * etc. + */ + @JsonIgnore private Map additionalProperties; + + /** + * Get the rdbBackupEnabled property: Specifies whether the rdb backup is enabled. + * + * @return the rdbBackupEnabled value. + */ + public String rdbBackupEnabled() { + return this.rdbBackupEnabled; + } + + /** + * Set the rdbBackupEnabled property: Specifies whether the rdb backup is enabled. + * + * @param rdbBackupEnabled the rdbBackupEnabled value to set. + * @return the RedisCommonPropertiesRedisConfiguration object itself. + */ + public RedisCommonPropertiesRedisConfiguration withRdbBackupEnabled(String rdbBackupEnabled) { + this.rdbBackupEnabled = rdbBackupEnabled; + return this; + } + + /** + * Get the rdbBackupFrequency property: Specifies the frequency for creating rdb backup. + * + * @return the rdbBackupFrequency value. + */ + public String rdbBackupFrequency() { + return this.rdbBackupFrequency; + } + + /** + * Set the rdbBackupFrequency property: Specifies the frequency for creating rdb backup. + * + * @param rdbBackupFrequency the rdbBackupFrequency value to set. + * @return the RedisCommonPropertiesRedisConfiguration object itself. + */ + public RedisCommonPropertiesRedisConfiguration withRdbBackupFrequency(String rdbBackupFrequency) { + this.rdbBackupFrequency = rdbBackupFrequency; + return this; + } + + /** + * Get the rdbBackupMaxSnapshotCount property: Specifies the maximum number of snapshots for rdb backup. + * + * @return the rdbBackupMaxSnapshotCount value. + */ + public String rdbBackupMaxSnapshotCount() { + return this.rdbBackupMaxSnapshotCount; + } + + /** + * Set the rdbBackupMaxSnapshotCount property: Specifies the maximum number of snapshots for rdb backup. + * + * @param rdbBackupMaxSnapshotCount the rdbBackupMaxSnapshotCount value to set. + * @return the RedisCommonPropertiesRedisConfiguration object itself. + */ + public RedisCommonPropertiesRedisConfiguration withRdbBackupMaxSnapshotCount(String rdbBackupMaxSnapshotCount) { + this.rdbBackupMaxSnapshotCount = rdbBackupMaxSnapshotCount; + return this; + } + + /** + * Get the rdbStorageConnectionString property: The storage account connection string for storing rdb file. + * + * @return the rdbStorageConnectionString value. + */ + public String rdbStorageConnectionString() { + return this.rdbStorageConnectionString; + } + + /** + * Set the rdbStorageConnectionString property: The storage account connection string for storing rdb file. + * + * @param rdbStorageConnectionString the rdbStorageConnectionString value to set. + * @return the RedisCommonPropertiesRedisConfiguration object itself. + */ + public RedisCommonPropertiesRedisConfiguration withRdbStorageConnectionString(String rdbStorageConnectionString) { + this.rdbStorageConnectionString = rdbStorageConnectionString; + return this; + } + + /** + * Get the aofStorageConnectionString0 property: First storage account connection string. + * + * @return the aofStorageConnectionString0 value. + */ + public String aofStorageConnectionString0() { + return this.aofStorageConnectionString0; + } + + /** + * Set the aofStorageConnectionString0 property: First storage account connection string. + * + * @param aofStorageConnectionString0 the aofStorageConnectionString0 value to set. + * @return the RedisCommonPropertiesRedisConfiguration object itself. + */ + public RedisCommonPropertiesRedisConfiguration withAofStorageConnectionString0(String aofStorageConnectionString0) { + this.aofStorageConnectionString0 = aofStorageConnectionString0; + return this; + } + + /** + * Get the aofStorageConnectionString1 property: Second storage account connection string. + * + * @return the aofStorageConnectionString1 value. + */ + public String aofStorageConnectionString1() { + return this.aofStorageConnectionString1; + } + + /** + * Set the aofStorageConnectionString1 property: Second storage account connection string. + * + * @param aofStorageConnectionString1 the aofStorageConnectionString1 value to set. + * @return the RedisCommonPropertiesRedisConfiguration object itself. + */ + public RedisCommonPropertiesRedisConfiguration withAofStorageConnectionString1(String aofStorageConnectionString1) { + this.aofStorageConnectionString1 = aofStorageConnectionString1; + return this; + } + + /** + * Get the maxfragmentationmemoryReserved property: Value in megabytes reserved for fragmentation per shard. + * + * @return the maxfragmentationmemoryReserved value. + */ + public String maxfragmentationmemoryReserved() { + return this.maxfragmentationmemoryReserved; + } + + /** + * Set the maxfragmentationmemoryReserved property: Value in megabytes reserved for fragmentation per shard. + * + * @param maxfragmentationmemoryReserved the maxfragmentationmemoryReserved value to set. + * @return the RedisCommonPropertiesRedisConfiguration object itself. + */ + public RedisCommonPropertiesRedisConfiguration withMaxfragmentationmemoryReserved( + String maxfragmentationmemoryReserved) { + this.maxfragmentationmemoryReserved = maxfragmentationmemoryReserved; + return this; + } + + /** + * Get the maxmemoryPolicy property: The eviction strategy used when your data won't fit within its memory limit. + * + * @return the maxmemoryPolicy value. + */ + public String maxmemoryPolicy() { + return this.maxmemoryPolicy; + } + + /** + * Set the maxmemoryPolicy property: The eviction strategy used when your data won't fit within its memory limit. + * + * @param maxmemoryPolicy the maxmemoryPolicy value to set. + * @return the RedisCommonPropertiesRedisConfiguration object itself. + */ + public RedisCommonPropertiesRedisConfiguration withMaxmemoryPolicy(String maxmemoryPolicy) { + this.maxmemoryPolicy = maxmemoryPolicy; + return this; + } + + /** + * Get the maxmemoryReserved property: Value in megabytes reserved for non-cache usage per shard e.g. failover. + * + * @return the maxmemoryReserved value. + */ + public String maxmemoryReserved() { + return this.maxmemoryReserved; + } + + /** + * Set the maxmemoryReserved property: Value in megabytes reserved for non-cache usage per shard e.g. failover. + * + * @param maxmemoryReserved the maxmemoryReserved value to set. + * @return the RedisCommonPropertiesRedisConfiguration object itself. + */ + public RedisCommonPropertiesRedisConfiguration withMaxmemoryReserved(String maxmemoryReserved) { + this.maxmemoryReserved = maxmemoryReserved; + return this; + } + + /** + * Get the maxmemoryDelta property: Value in megabytes reserved for non-cache usage per shard e.g. failover. + * + * @return the maxmemoryDelta value. + */ + public String maxmemoryDelta() { + return this.maxmemoryDelta; + } + + /** + * Set the maxmemoryDelta property: Value in megabytes reserved for non-cache usage per shard e.g. failover. + * + * @param maxmemoryDelta the maxmemoryDelta value to set. + * @return the RedisCommonPropertiesRedisConfiguration object itself. + */ + public RedisCommonPropertiesRedisConfiguration withMaxmemoryDelta(String maxmemoryDelta) { + this.maxmemoryDelta = maxmemoryDelta; + return this; + } + + /** + * Get the maxclients property: The max clients config. + * + * @return the maxclients value. + */ + public String maxclients() { + return this.maxclients; + } + + /** + * Get the preferredDataArchiveAuthMethod property: Preferred auth method to communicate to storage account used for + * data archive, specify SAS or ManagedIdentity, default value is SAS. + * + * @return the preferredDataArchiveAuthMethod value. + */ + public String preferredDataArchiveAuthMethod() { + return this.preferredDataArchiveAuthMethod; + } + + /** + * Get the preferredDataPersistenceAuthMethod property: Preferred auth method to communicate to storage account used + * for data persistence, specify SAS or ManagedIdentity, default value is SAS. + * + * @return the preferredDataPersistenceAuthMethod value. + */ + public String preferredDataPersistenceAuthMethod() { + return this.preferredDataPersistenceAuthMethod; + } + + /** + * Get the zonalConfiguration property: Zonal Configuration. + * + * @return the zonalConfiguration value. + */ + public String zonalConfiguration() { + return this.zonalConfiguration; + } + + /** + * Get the additionalProperties property: All Redis Settings. Few possible keys: + * rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value + * etc. + * + * @return the additionalProperties value. + */ + @JsonAnyGetter + public Map additionalProperties() { + return this.additionalProperties; + } + + /** + * Set the additionalProperties property: All Redis Settings. Few possible keys: + * rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value + * etc. + * + * @param additionalProperties the additionalProperties value to set. + * @return the RedisCommonPropertiesRedisConfiguration object itself. + */ + public RedisCommonPropertiesRedisConfiguration withAdditionalProperties(Map additionalProperties) { + this.additionalProperties = additionalProperties; + return this; + } + + @JsonAnySetter + void withAdditionalProperties(String key, Object value) { + if (additionalProperties == null) { + additionalProperties = new HashMap<>(); + } + additionalProperties.put(key, value); + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisCreateParameters.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisCreateParameters.java index 81c1b586db7d6..74c1e77dc1c34 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisCreateParameters.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisCreateParameters.java @@ -7,7 +7,6 @@ import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.models.RedisCreateProperties; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; @@ -16,8 +15,6 @@ /** Parameters supplied to the Create Redis operation. */ @Fluent public final class RedisCreateParameters { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisCreateParameters.class); - /* * Redis cache properties. */ @@ -44,6 +41,12 @@ public final class RedisCreateParameters { @JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS) private Map tags; + /* + * The identity of the resource. + */ + @JsonProperty(value = "identity") + private ManagedServiceIdentity identity; + /** * Get the innerProperties property: Redis cache properties. * @@ -113,6 +116,26 @@ public RedisCreateParameters withTags(Map tags) { return this; } + /** + * Get the identity property: The identity of the resource. + * + * @return the identity value. + */ + public ManagedServiceIdentity identity() { + return this.identity; + } + + /** + * Set the identity property: The identity of the resource. + * + * @param identity the identity value to set. + * @return the RedisCreateParameters object itself. + */ + public RedisCreateParameters withIdentity(ManagedServiceIdentity identity) { + this.identity = identity; + return this; + } + /** * Get the sku property: The SKU of the Redis cache to deploy. * @@ -164,8 +187,8 @@ public RedisCreateParameters withSubnetId(String subnetId) { } /** - * Get the staticIp property: Static IP address. Required when deploying a Redis cache inside an existing Azure - * Virtual Network. + * Get the staticIp property: Static IP address. Optionally, may be specified when deploying a Redis cache inside an + * existing Azure Virtual Network; auto assigned by default. * * @return the staticIp value. */ @@ -174,8 +197,8 @@ public String staticIp() { } /** - * Set the staticIp property: Static IP address. Required when deploying a Redis cache inside an existing Azure - * Virtual Network. + * Set the staticIp property: Static IP address. Optionally, may be specified when deploying a Redis cache inside an + * existing Azure Virtual Network; auto assigned by default. * * @param staticIp the staticIp value to set. * @return the RedisCreateParameters object itself. @@ -195,7 +218,7 @@ public RedisCreateParameters withStaticIp(String staticIp) { * * @return the redisConfiguration value. */ - public Map redisConfiguration() { + public RedisCommonPropertiesRedisConfiguration redisConfiguration() { return this.innerProperties() == null ? null : this.innerProperties().redisConfiguration(); } @@ -207,7 +230,7 @@ public Map redisConfiguration() { * @param redisConfiguration the redisConfiguration value to set. * @return the RedisCreateParameters object itself. */ - public RedisCreateParameters withRedisConfiguration(Map redisConfiguration) { + public RedisCreateParameters withRedisConfiguration(RedisCommonPropertiesRedisConfiguration redisConfiguration) { if (this.innerProperties() == null) { this.innerProperties = new RedisCreateProperties(); } @@ -414,7 +437,7 @@ public RedisCreateParameters withPublicNetworkAccess(PublicNetworkAccess publicN */ public void validate() { if (innerProperties() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property innerProperties in model RedisCreateParameters")); @@ -422,9 +445,14 @@ public void validate() { innerProperties().validate(); } if (location() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException("Missing required property location in model RedisCreateParameters")); } + if (identity() != null) { + identity().validate(); + } } + + private static final ClientLogger LOGGER = new ClientLogger(RedisCreateParameters.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisFirewallRuleCreateParameters.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisFirewallRuleCreateParameters.java index 5ea88bc8574e7..51f38918c3c67 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisFirewallRuleCreateParameters.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisFirewallRuleCreateParameters.java @@ -5,9 +5,7 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.models.RedisFirewallRuleInner; -import com.fasterxml.jackson.annotation.JsonIgnore; /** * Parameters required for creating a firewall rule on redis cache. (Note, you can just use the FirewallRule type @@ -15,8 +13,6 @@ */ @Fluent public final class RedisFirewallRuleCreateParameters extends RedisFirewallRuleInner { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisFirewallRuleCreateParameters.class); - /** {@inheritDoc} */ @Override public RedisFirewallRuleCreateParameters withStartIp(String startIp) { diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisFirewallRuleListResult.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisFirewallRuleListResult.java index b74bf1b9013f2..740caec04989d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisFirewallRuleListResult.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisFirewallRuleListResult.java @@ -5,17 +5,13 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.models.RedisFirewallRuleInner; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** The response of list firewall rules Redis operation. */ @Fluent public final class RedisFirewallRuleListResult { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisFirewallRuleListResult.class); - /* * Results of the list firewall rules operation. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisInstanceDetails.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisInstanceDetails.java index 793781b3ebfd1..303abda59d86f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisInstanceDetails.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisInstanceDetails.java @@ -5,15 +5,11 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Immutable; -import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Details of single instance of redis. */ @Immutable public final class RedisInstanceDetails { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisInstanceDetails.class); - /* * Redis instance SSL port. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisLinkedServer.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisLinkedServer.java index f30fb3cbfa124..072a9ff861496 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisLinkedServer.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisLinkedServer.java @@ -5,15 +5,11 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Immutable; -import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Linked server Id. */ @Immutable public final class RedisLinkedServer { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisLinkedServer.class); - /* * Linked server Id. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisLinkedServerCreateParameters.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisLinkedServerCreateParameters.java index 7c39d802c970b..6b2c2ababd09f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisLinkedServerCreateParameters.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisLinkedServerCreateParameters.java @@ -7,14 +7,11 @@ import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.models.RedisLinkedServerCreateProperties; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Parameter required for creating a linked server to redis cache. */ @Fluent public final class RedisLinkedServerCreateParameters { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisLinkedServerCreateParameters.class); - /* * Properties required to create a linked server. */ @@ -106,7 +103,7 @@ public RedisLinkedServerCreateParameters withServerRole(ReplicationRole serverRo */ public void validate() { if (innerProperties() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property innerProperties in model RedisLinkedServerCreateParameters")); @@ -114,4 +111,6 @@ public void validate() { innerProperties().validate(); } } + + private static final ClientLogger LOGGER = new ClientLogger(RedisLinkedServerCreateParameters.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisLinkedServerWithPropertiesList.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisLinkedServerWithPropertiesList.java index 7e543d49673cd..37fab38f84ec5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisLinkedServerWithPropertiesList.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisLinkedServerWithPropertiesList.java @@ -5,17 +5,13 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.models.RedisLinkedServerWithPropertiesInner; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** List of linked servers (with properties) of a Redis cache. */ @Fluent public final class RedisLinkedServerWithPropertiesList { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisLinkedServerWithPropertiesList.class); - /* * List of linked servers (with properties) of a Redis cache. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisListResult.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisListResult.java index 23ad52ef170de..7f38d6482e869 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisListResult.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisListResult.java @@ -5,17 +5,13 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.models.RedisResourceInner; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** The response of list Redis operation. */ @Fluent public final class RedisListResult { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisListResult.class); - /* * List of Redis cache instances. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisPatchScheduleListResult.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisPatchScheduleListResult.java index 9c0c827f51f40..b6cac760b1adf 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisPatchScheduleListResult.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisPatchScheduleListResult.java @@ -5,17 +5,13 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.models.RedisPatchScheduleInner; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** The response of list patch schedules Redis operation. */ @Fluent public final class RedisPatchScheduleListResult { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisPatchScheduleListResult.class); - /* * Results of the list patch schedules operation. */ diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisRebootParameters.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisRebootParameters.java index 71740fed4a72e..7a0cf287c4a03 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisRebootParameters.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisRebootParameters.java @@ -5,16 +5,12 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; /** Specifies which Redis node(s) to reboot. */ @Fluent public final class RedisRebootParameters { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisRebootParameters.class); - /* * Which Redis node(s) to reboot. Depending on this value data loss is * possible. diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisRegenerateKeyParameters.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisRegenerateKeyParameters.java index ec3066076be3c..23fc93e4d3d1c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisRegenerateKeyParameters.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisRegenerateKeyParameters.java @@ -6,14 +6,11 @@ import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** Specifies which Redis access keys to reset. */ @Fluent public final class RedisRegenerateKeyParameters { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisRegenerateKeyParameters.class); - /* * The Redis access key to regenerate. */ @@ -47,10 +44,12 @@ public RedisRegenerateKeyParameters withKeyType(RedisKeyType keyType) { */ public void validate() { if (keyType() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException( "Missing required property keyType in model RedisRegenerateKeyParameters")); } } + + private static final ClientLogger LOGGER = new ClientLogger(RedisRegenerateKeyParameters.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisUpdateParameters.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisUpdateParameters.java index 441c5d63a22a8..c1cd933c3d4f3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisUpdateParameters.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/RedisUpdateParameters.java @@ -5,9 +5,7 @@ package com.azure.resourcemanager.redis.models; import com.azure.core.annotation.Fluent; -import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.redis.fluent.models.RedisUpdateProperties; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Map; @@ -15,8 +13,6 @@ /** Parameters supplied to the Update Redis operation. */ @Fluent public final class RedisUpdateParameters { - @JsonIgnore private final ClientLogger logger = new ClientLogger(RedisUpdateParameters.class); - /* * Redis cache properties. */ @@ -30,6 +26,12 @@ public final class RedisUpdateParameters { @JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS) private Map tags; + /* + * The identity of the resource. + */ + @JsonProperty(value = "identity") + private ManagedServiceIdentity identity; + /** * Get the innerProperties property: Redis cache properties. * @@ -59,6 +61,26 @@ public RedisUpdateParameters withTags(Map tags) { return this; } + /** + * Get the identity property: The identity of the resource. + * + * @return the identity value. + */ + public ManagedServiceIdentity identity() { + return this.identity; + } + + /** + * Set the identity property: The identity of the resource. + * + * @param identity the identity value to set. + * @return the RedisUpdateParameters object itself. + */ + public RedisUpdateParameters withIdentity(ManagedServiceIdentity identity) { + this.identity = identity; + return this; + } + /** * Get the sku property: The SKU of the Redis cache to deploy. * @@ -89,7 +111,7 @@ public RedisUpdateParameters withSku(Sku sku) { * * @return the redisConfiguration value. */ - public Map redisConfiguration() { + public RedisCommonPropertiesRedisConfiguration redisConfiguration() { return this.innerProperties() == null ? null : this.innerProperties().redisConfiguration(); } @@ -101,7 +123,7 @@ public Map redisConfiguration() { * @param redisConfiguration the redisConfiguration value to set. * @return the RedisUpdateParameters object itself. */ - public RedisUpdateParameters withRedisConfiguration(Map redisConfiguration) { + public RedisUpdateParameters withRedisConfiguration(RedisCommonPropertiesRedisConfiguration redisConfiguration) { if (this.innerProperties() == null) { this.innerProperties = new RedisUpdateProperties(); } @@ -310,5 +332,8 @@ public void validate() { if (innerProperties() != null) { innerProperties().validate(); } + if (identity() != null) { + identity().validate(); + } } } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ScheduleEntry.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ScheduleEntry.java index 3dc3bb2daef68..271bcd978a83d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ScheduleEntry.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/ScheduleEntry.java @@ -6,15 +6,12 @@ import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.time.Duration; /** Patch schedule entry for a Premium Redis Cache. */ @Fluent public final class ScheduleEntry { - @JsonIgnore private final ClientLogger logger = new ClientLogger(ScheduleEntry.class); - /* * Day of the week when a cache can be patched. */ @@ -100,9 +97,11 @@ public ScheduleEntry withMaintenanceWindow(Duration maintenanceWindow) { */ public void validate() { if (dayOfWeek() == null) { - throw logger + throw LOGGER .logExceptionAsError( new IllegalArgumentException("Missing required property dayOfWeek in model ScheduleEntry")); } } + + private static final ClientLogger LOGGER = new ClientLogger(ScheduleEntry.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/Sku.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/Sku.java index 217a966bfd97f..f00383adc68c5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/Sku.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/Sku.java @@ -6,14 +6,11 @@ import com.azure.core.annotation.Fluent; import com.azure.core.util.logging.ClientLogger; -import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** SKU parameters supplied to the create Redis operation. */ @Fluent public final class Sku { - @JsonIgnore private final ClientLogger logger = new ClientLogger(Sku.class); - /* * The type of Redis cache to deploy. Valid values: (Basic, Standard, * Premium) @@ -105,12 +102,14 @@ public Sku withCapacity(int capacity) { */ public void validate() { if (name() == null) { - throw logger + throw LOGGER .logExceptionAsError(new IllegalArgumentException("Missing required property name in model Sku")); } if (family() == null) { - throw logger + throw LOGGER .logExceptionAsError(new IllegalArgumentException("Missing required property family in model Sku")); } } + + private static final ClientLogger LOGGER = new ClientLogger(Sku.class); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/UserAssignedIdentity.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/UserAssignedIdentity.java new file mode 100644 index 0000000000000..bdfff438922ec --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/models/UserAssignedIdentity.java @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.models; + +import com.azure.core.annotation.Immutable; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.util.UUID; + +/** User assigned identity properties. */ +@Immutable +public class UserAssignedIdentity { + /* + * The principal ID of the assigned identity. + */ + @JsonProperty(value = "principalId", access = JsonProperty.Access.WRITE_ONLY) + private UUID principalId; + + /* + * The client ID of the assigned identity. + */ + @JsonProperty(value = "clientId", access = JsonProperty.Access.WRITE_ONLY) + private UUID clientId; + + /** + * Get the principalId property: The principal ID of the assigned identity. + * + * @return the principalId value. + */ + public UUID principalId() { + return this.principalId; + } + + /** + * Get the clientId property: The client ID of the assigned identity. + * + * @return the clientId value. + */ + public UUID clientId() { + return this.clientId; + } + + /** + * Validates the instance. + * + * @throws IllegalArgumentException thrown if the instance is not valid. + */ + public void validate() { + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/resourcemanager/redis/RedisCacheOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/resourcemanager/redis/RedisCacheOperationsTests.java index 7682148f22823..00551c05ca2b2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/resourcemanager/redis/RedisCacheOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/resourcemanager/redis/RedisCacheOperationsTests.java @@ -63,7 +63,6 @@ public void canCRUDRedisCache() throws Exception { .withRegion(Region.US_CENTRAL) .withNewResourceGroup(resourceGroups) .withPremiumSku(2) - .withRedisConfiguration("maxclients", "2") .withNonSslPort() .withFirewallRule("rule1", "192.168.0.1", "192.168.0.4") .withFirewallRule("rule2", "192.168.0.10", "192.168.0.40"); @@ -96,7 +95,6 @@ public void canCRUDRedisCache() throws Exception { // Redis configuration update premiumCache .update() - .withRedisConfiguration("maxclients", "3") .withoutFirewallRule("rule1") .withFirewallRule("rule3", "192.168.0.10", "192.168.0.104") .withoutMinimumTlsVersion() @@ -319,6 +317,10 @@ public void canCreateRedisWithRdbAof() { .withRedisConfiguration("rdb-backup-max-snapshot-count", "1") .withRedisConfiguration("rdb-storage-connection-string", connectionString) .create(); + Assertions.assertEquals("true", redisCache.innerModel().redisConfiguration().rdbBackupEnabled()); + Assertions.assertEquals("15", redisCache.innerModel().redisConfiguration().rdbBackupFrequency()); + Assertions.assertEquals("1", redisCache.innerModel().redisConfiguration().rdbBackupMaxSnapshotCount()); + Assertions.assertNotNull(redisCache.innerModel().redisConfiguration().rdbStorageConnectionString()); redisManager.redisCaches().deleteById(redisCache.id()); @@ -335,5 +337,8 @@ public void canCreateRedisWithRdbAof() { .withRedisConfiguration("aof-storage-connection-string-0", connectionString) .withRedisConfiguration("aof-storage-connection-string-1", connectionString) .create(); + Assertions.assertEquals("true", redisCache.innerModel().redisConfiguration().additionalProperties().get("aof-backup-enabled")); + Assertions.assertNotNull(redisCache.innerModel().redisConfiguration().aofStorageConnectionString0()); + Assertions.assertNotNull(redisCache.innerModel().redisConfiguration().aofStorageConnectionString1()); } } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/resourcemanager/redis/implementation/RedisConfigurationTests.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/resourcemanager/redis/implementation/RedisConfigurationTests.java new file mode 100644 index 0000000000000..cc6d83eadec76 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/resourcemanager/redis/implementation/RedisConfigurationTests.java @@ -0,0 +1,174 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +package com.azure.resourcemanager.redis.implementation; + +import com.azure.core.util.CoreUtils; +import com.azure.resourcemanager.redis.models.RedisCommonPropertiesRedisConfiguration; +import com.fasterxml.jackson.annotation.JsonProperty; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + +import java.lang.reflect.Field; +import java.util.Collections; +import java.util.Map; +import java.util.function.Function; +import java.util.stream.Collectors; +import java.util.stream.Stream; + +public class RedisConfigurationTests { + + @Test + @Disabled + public void generateConfigurationUtils() { + // Update class ConfigurationUtils + System.out.println(generateToMap()); + System.out.println(generatePutConfiguration()); + System.out.println(generateRemoveConfiguration()); + } + + @Test + public void testConfigurationUtils() { + RedisCommonPropertiesRedisConfiguration configuration = new RedisCommonPropertiesRedisConfiguration() + .withRdbBackupEnabled("true") + .withAofStorageConnectionString0("connection"); + + Map map = ConfigurationUtils.toMap(configuration); + Assertions.assertEquals(2, map.size()); + Assertions.assertEquals("true", map.get("rdb-backup-enabled")); + Assertions.assertEquals("connection", map.get("aof-storage-connection-string-0")); + + RedisCommonPropertiesRedisConfiguration configuration1 = ConfigurationUtils.toConfiguration(map); + Assertions.assertEquals("true", configuration1.rdbBackupEnabled()); + Assertions.assertEquals("connection", configuration1.aofStorageConnectionString0()); + Assertions.assertTrue(CoreUtils.isNullOrEmpty(configuration1.additionalProperties())); + + configuration + .withAdditionalProperties(Collections.singletonMap("key1", "value1")); + map = ConfigurationUtils.toMap(configuration); + Assertions.assertEquals(3, map.size()); + Assertions.assertEquals("value1", map.get("key1")); + + configuration1 = ConfigurationUtils.toConfiguration(map); + Assertions.assertEquals("true", configuration1.rdbBackupEnabled()); + Assertions.assertEquals("connection", configuration1.aofStorageConnectionString0()); + Assertions.assertEquals(1, configuration1.additionalProperties().size()); + Assertions.assertEquals("value1", configuration1.additionalProperties().get("key1")); + + configuration = new RedisCommonPropertiesRedisConfiguration(); + ConfigurationUtils.putConfiguration(configuration, "rdb-backup-enabled", "true"); + Assertions.assertEquals("true", configuration.rdbBackupEnabled()); + ConfigurationUtils.putConfiguration(configuration, "key1", "value1"); + Assertions.assertEquals("value1", configuration1.additionalProperties().get("key1")); + + ConfigurationUtils.removeConfiguration(configuration, "rdb-backup-enabled"); + Assertions.assertNull(configuration.rdbBackupEnabled()); + ConfigurationUtils.removeConfiguration(configuration, "key2"); + Assertions.assertEquals("value1", configuration1.additionalProperties().get("key1")); + ConfigurationUtils.removeConfiguration(configuration, "key1"); + Assertions.assertTrue(CoreUtils.isNullOrEmpty(configuration.additionalProperties())); + } + + private static String generateToMap() { + StringBuilder sb = new StringBuilder(); + + sb.append("static Map toMap(RedisCommonPropertiesRedisConfiguration configuration) {\n"); + sb.append(" Map map = new HashMap<>();\n"); + sb.append(" if (configuration != null) {\n"); + + getFieldsWithJsonProperty(false).forEach((key, value) -> { + sb.append(" if (configuration.").append(value.getName()).append("() != null) {\n"); + sb.append(" map.put(\"").append(key).append("\", configuration.").append(value.getName()).append("());\n"); + sb.append(" }\n"); + }); + + sb.append(" if (configuration.additionalProperties() != null) {\n"); + sb.append(" configuration.additionalProperties().forEach((key1, value) -> map.put(key1, value.toString()));\n"); + sb.append(" }\n"); + sb.append(" }\n"); + sb.append(" return map;\n"); + + sb.append("}\n"); + + return sb.toString(); + } + + private static String generatePutConfiguration() { + StringBuilder sb = new StringBuilder(); + + sb.append("static void putConfiguration(RedisCommonPropertiesRedisConfiguration configuration,\n"); + sb.append(" String key, String value) {\n"); + + sb.append(" if (configuration == null) {\n"); + sb.append(" return;\n"); + sb.append(" }\n"); + + sb.append(" switch (key) {\n"); + getFieldsWithJsonProperty(true).forEach((key, value) -> sb.append(writeSwitchCase(key, value, + "configuration." + setterMethodName(value) + "(value)"))); + sb.append(" default:\n"); + sb.append(" if (configuration.additionalProperties() == null) {\n"); + sb.append(" configuration.withAdditionalProperties(new HashMap<>());\n"); + sb.append(" }\n"); + sb.append(" configuration.additionalProperties().put(key, value);\n"); + sb.append(" break;\n"); + + sb.append(" }\n"); + + sb.append("}\n"); + + return sb.toString(); + } + + private static String generateRemoveConfiguration() { + StringBuilder sb = new StringBuilder(); + + sb.append("static void removeConfiguration(RedisCommonPropertiesRedisConfiguration configuration, String key) {\n"); + + sb.append(" if (configuration == null) {\n"); + sb.append(" return;\n"); + sb.append(" }\n"); + sb.append(" if (configuration.additionalProperties() != null) {\n"); + sb.append(" configuration.additionalProperties().remove(key);\n"); + sb.append(" }\n"); + + sb.append(" switch (key) {\n"); + getFieldsWithJsonProperty(true).forEach((key, value) -> sb.append(writeSwitchCase(key, value, + "configuration." + setterMethodName(value) + "(null)"))); + sb.append(" default:\n"); + sb.append(" break;\n"); + sb.append(" }\n"); + + sb.append("}\n"); + + return sb.toString(); + } + + private static String writeSwitchCase(String property, Field field, String code) { + StringBuilder sb = new StringBuilder(); + sb.append(" case \"").append(property).append("\":\n"); + sb.append(" ").append(code).append(";\n"); + sb.append(" break;\n"); + return sb.toString(); + } + + private static String setterMethodName(Field field) { + String name = field.getName(); + name = Character.toUpperCase(name.charAt(0)) + name.substring(1); + return "with" + name; + } + + private static Map getFieldsWithJsonProperty(boolean modifiable) { + Class aClass = RedisCommonPropertiesRedisConfiguration.class; + Stream fields = Stream.of(aClass.getDeclaredFields()) + .filter(f -> f.isAnnotationPresent(JsonProperty.class)); + if (modifiable) { + fields = fields + .filter(f -> f.getDeclaredAnnotation(JsonProperty.class).access() != JsonProperty.Access.WRITE_ONLY); + } + return fields.collect(Collectors.toMap( + f -> f.getDeclaredAnnotation(JsonProperty.class).value(), + Function.identity())); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/test/EnumTest.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/test/EnumTest.java deleted file mode 100644 index d5aad2c63e883..0000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/test/EnumTest.java +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.test; - -import com.azure.resourcemanager.redis.models.RedisCache; -import org.junit.jupiter.api.Test; - -public class EnumTest { - - @Test - public void redisVersion() { - RedisCache.RedisVersion version = RedisCache.RedisVersion.V4; - System.out.println(version); - } - -} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canCRUDLinkedServers.json b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canCRUDLinkedServers.json index f9438bccc9185..66f44492d2d21 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canCRUDLinkedServers.json +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canCRUDLinkedServers.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0278533-a6a3-4897-88fd-90da424ae3a9", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b409b937-bc0a-45aa-951d-22396b36d9a9", "Content-Type" : "application/json" }, "Response" : { @@ -13,24 +13,24 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "404", - "x-ms-correlation-request-id" : "b4887e90-6825-4d05-9732-2455329b8b5b", - "Date" : "Mon, 23 Aug 2021 03:21:54 GMT", + "x-ms-correlation-request-id" : "ad595a23-35bf-4efd-948c-fc21a747c7de", + "Date" : "Sun, 06 Mar 2022 06:20:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "x-ms-failure-cause" : "gateway", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032154Z:b4887e90-6825-4d05-9732-2455329b8b5b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062033Z:ad595a23-35bf-4efd-948c-fc21a747c7de", "Expires" : "-1", - "x-ms-request-id" : "b4887e90-6825-4d05-9732-2455329b8b5b", - "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg81366Second' could not be found.\"}}", + "x-ms-request-id" : "ad595a23-35bf-4efd-948c-fc21a747c7de", + "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg28437Second' could not be found.\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/firewallRules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0d3828e-7d29-4b30-8b28-8475a22f1786", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e9b93e8e-0e9a-40b7-a423-81366e3d46bb", "Content-Type" : "application/json" }, "Response" : { @@ -39,24 +39,24 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "404", - "x-ms-correlation-request-id" : "18f48059-f633-4c18-852d-0380935b6a02", - "Date" : "Mon, 23 Aug 2021 03:21:54 GMT", + "x-ms-correlation-request-id" : "e0e38b0d-dd27-48e8-b1b0-08c7b25253f7", + "Date" : "Sun, 06 Mar 2022 06:20:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "x-ms-failure-cause" : "gateway", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032154Z:18f48059-f633-4c18-852d-0380935b6a02", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062033Z:e0e38b0d-dd27-48e8-b1b0-08c7b25253f7", "Expires" : "-1", - "x-ms-request-id" : "18f48059-f633-4c18-852d-0380935b6a02", - "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg81366Second' could not be found.\"}}", + "x-ms-request-id" : "e0e38b0d-dd27-48e8-b1b0-08c7b25253f7", + "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg28437Second' could not be found.\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg81366Second?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg28437Second?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e19a6fce-90f6-4109-a403-fb7ce748b1d5", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "352f217f-021e-4e1d-a0a4-1e45a57d96f6", "Content-Type" : "application/json" }, "Response" : { @@ -66,871 +66,844 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "ea92081a-6ead-47e6-ae48-3d71f07051d3", - "Date" : "Mon, 23 Aug 2021 03:21:58 GMT", + "x-ms-correlation-request-id" : "8b9749cb-6c1e-451c-a15d-98e8efbab6b7", + "Date" : "Sun, 06 Mar 2022 06:20:37 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032158Z:ea92081a-6ead-47e6-ae48-3d71f07051d3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062037Z:8b9749cb-6c1e-451c-a15d-98e8efbab6b7", "Expires" : "-1", - "x-ms-request-id" : "ea92081a-6ead-47e6-ae48-3d71f07051d3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second\",\"name\":\"javacsmrg81366Second\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "8b9749cb-6c1e-451c-a15d-98e8efbab6b7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second\",\"name\":\"javacsmrg28437Second\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"centralus\",\"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/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4649035a-18cf-4bf7-a870-39684718235f", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "09d8db61-a029-457b-9071-db880ab5a88b", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "952", + "content-length" : "1300", "Server" : "Microsoft-HTTPAPI/2.0", "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" : "b35fdad2-ffbc-4e58-8e9a-d21d8a28cd99", - "Date" : "Mon, 23 Aug 2021 03:22:03 GMT", + "x-ms-correlation-request-id" : "af750dd1-f5eb-4c65-8dde-4ab3217a1174", + "Date" : "Sun, 06 Mar 2022 06:20:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4649035a-18cf-4bf7-a870-39684718235f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032204Z:b35fdad2-ffbc-4e58-8e9a-d21d8a28cd99", + "client-request-id" : "09d8db61-a029-457b-9071-db880ab5a88b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062047Z:af750dd1-f5eb-4c65-8dde-4ab3217a1174", "Expires" : "-1", - "x-ms-request-id" : "25a649bc-c531-43df-bc27-42278749ab85", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"},\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central US/asyncOperations/70d0ca97-62fe-4f1f-856c-bfafe06dc383?api-version=2021-06-01", + "x-ms-request-id" : "70d0ca97-62fe-4f1f-856c-bfafe06dc383", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\r\n \"location\": \"Central US\",\r\n \"name\": \"javacsmrc16532Third\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.1.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"nonSslPort\": 13000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"nonSslPort\": 13001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"15000\",\r\n \"maxmemory-reserved\": \"1330\",\r\n \"maxfragmentationmemory-reserved\": \"1330\",\r\n \"maxmemory-delta\": \"1330\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"***REMOVED***\",\r\n \"secondaryKey\": \"***REMOVED***\"\r\n },\r\n \"hostName\": \"javacsmrc16532Third.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "457a2ace-f8ec-40fb-a494-010a46c3af85" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "465d34e3-2eea-4fc7-8e75-254d1afad88b" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "8bad9237-242e-4548-b604-b38c477937da", - "Date" : "Mon, 23 Aug 2021 03:22:33 GMT", + "x-ms-correlation-request-id" : "1ea2ae8f-574f-4b0c-94e0-bee84f99bcc4", + "Date" : "Sun, 06 Mar 2022 06:21:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "457a2ace-f8ec-40fb-a494-010a46c3af85", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032234Z:8bad9237-242e-4548-b604-b38c477937da", + "client-request-id" : "465d34e3-2eea-4fc7-8e75-254d1afad88b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062119Z:1ea2ae8f-574f-4b0c-94e0-bee84f99bcc4", "Expires" : "-1", - "x-ms-request-id" : "eba7bdfb-71d8-4eef-8955-9c935769cb12", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "eeb3c58d-4adc-4667-96f4-0194ad2fcf56", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec14c2d4-99e1-47d7-89ff-b0e0b326f395" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "cb724b4a-719c-4210-a8d7-02fb02433e6e" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "27cf6345-155a-4be7-b2ff-fd669768c753", - "Date" : "Mon, 23 Aug 2021 03:23:04 GMT", + "x-ms-correlation-request-id" : "ea04e73f-1833-42ea-8813-bb709c9780b5", + "Date" : "Sun, 06 Mar 2022 06:21:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ec14c2d4-99e1-47d7-89ff-b0e0b326f395", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032304Z:27cf6345-155a-4be7-b2ff-fd669768c753", + "client-request-id" : "cb724b4a-719c-4210-a8d7-02fb02433e6e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062149Z:ea04e73f-1833-42ea-8813-bb709c9780b5", "Expires" : "-1", - "x-ms-request-id" : "1598edcf-ca47-422d-ba4e-d93deb8aa3da", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "979488be-48ee-4483-b5fd-553fb6a106d8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a562c13b-5b8d-4d94-972f-160e792c8154" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "660e4214-13f9-45bb-9338-ca7b1a36a913" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "dc7bbf8e-0fab-47a1-814d-b7764d8b666a", - "Date" : "Mon, 23 Aug 2021 03:23:34 GMT", + "x-ms-correlation-request-id" : "68c14526-b4ec-4e71-93e3-20ccf8da332f", + "Date" : "Sun, 06 Mar 2022 06:22:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a562c13b-5b8d-4d94-972f-160e792c8154", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032335Z:dc7bbf8e-0fab-47a1-814d-b7764d8b666a", + "client-request-id" : "660e4214-13f9-45bb-9338-ca7b1a36a913", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062219Z:68c14526-b4ec-4e71-93e3-20ccf8da332f", "Expires" : "-1", - "x-ms-request-id" : "c17da324-f6c8-42c3-8a5a-d76d77ef744f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "dbfa9721-d771-425f-9477-74efd915ac90", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "42aeb561-a017-44f8-8412-e3d4512b6f1a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d5308675-2280-427d-bbce-8dc528f59e91" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "8fe1b988-65fc-4c8d-82ce-c5df6d5b323d", - "Date" : "Mon, 23 Aug 2021 03:24:05 GMT", + "x-ms-correlation-request-id" : "23805369-54c2-4e99-9af2-5345db777450", + "Date" : "Sun, 06 Mar 2022 06:22:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "42aeb561-a017-44f8-8412-e3d4512b6f1a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032405Z:8fe1b988-65fc-4c8d-82ce-c5df6d5b323d", + "client-request-id" : "d5308675-2280-427d-bbce-8dc528f59e91", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062250Z:23805369-54c2-4e99-9af2-5345db777450", "Expires" : "-1", - "x-ms-request-id" : "f30c53dd-4500-4263-b4c3-77538f78a131", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "4a74deb7-c46e-4859-bbc6-6d38b223da0c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8135497-af48-4607-9f36-22b7311c09de" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "81c8ee00-21a8-4b79-9302-6034bf661b6e" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "1e5d7f91-69d8-4c4e-b509-fd5d85e74e84", - "Date" : "Mon, 23 Aug 2021 03:24:35 GMT", + "x-ms-correlation-request-id" : "4eda0e8d-a3c5-481a-957c-c2e20031551d", + "Date" : "Sun, 06 Mar 2022 06:23:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e8135497-af48-4607-9f36-22b7311c09de", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032435Z:1e5d7f91-69d8-4c4e-b509-fd5d85e74e84", + "client-request-id" : "81c8ee00-21a8-4b79-9302-6034bf661b6e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062320Z:4eda0e8d-a3c5-481a-957c-c2e20031551d", "Expires" : "-1", - "x-ms-request-id" : "77e14e35-deeb-4134-a174-5a72192f916a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "40ccdcd8-e184-4efc-9156-72275bbdff81", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "03b7a550-0d0e-4485-8e83-4a5df71ce2d3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6472cfce-fa05-4fca-a42b-6e4d0f3c86af" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "414eccd2-b704-4ede-b253-ec820cad73b0", - "Date" : "Mon, 23 Aug 2021 03:25:05 GMT", + "x-ms-correlation-request-id" : "92e1a046-75bf-436d-a210-8fc05b7c377c", + "Date" : "Sun, 06 Mar 2022 06:23:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "03b7a550-0d0e-4485-8e83-4a5df71ce2d3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032506Z:414eccd2-b704-4ede-b253-ec820cad73b0", + "client-request-id" : "6472cfce-fa05-4fca-a42b-6e4d0f3c86af", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062351Z:92e1a046-75bf-436d-a210-8fc05b7c377c", "Expires" : "-1", - "x-ms-request-id" : "9cd80bf0-87af-4ca9-bd8e-5e96fe6ead14", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "eb430e12-5a91-45a1-ae9f-86d0ab967805", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bb61a874-7ee3-4d10-85b8-3301ab2bbd00" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "812b2026-4f82-4cec-a0f4-45bb78a725e8" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "0dfa5d08-3f40-431c-a2ab-f66d39df2c51", - "Date" : "Mon, 23 Aug 2021 03:25:35 GMT", + "x-ms-correlation-request-id" : "8c4c4baa-5ad8-45d9-b76a-923438184718", + "Date" : "Sun, 06 Mar 2022 06:24:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "bb61a874-7ee3-4d10-85b8-3301ab2bbd00", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032536Z:0dfa5d08-3f40-431c-a2ab-f66d39df2c51", + "client-request-id" : "812b2026-4f82-4cec-a0f4-45bb78a725e8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062421Z:8c4c4baa-5ad8-45d9-b76a-923438184718", "Expires" : "-1", - "x-ms-request-id" : "370613b3-a6fd-486a-86aa-f3422e108b7f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "f1a0a1ef-eb8f-4829-8ee9-709d393f1bbc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff9397d9-d4a4-49ea-b45c-0e8a70f45acf" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d55a56c2-68bc-4480-af11-49acb4bd998a" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "e83a33e9-1552-4621-a3c2-58f1c4ef191d", - "Date" : "Mon, 23 Aug 2021 03:26:06 GMT", + "x-ms-correlation-request-id" : "9c1a443e-ec26-40f1-8ed4-dbaa82513f7d", + "Date" : "Sun, 06 Mar 2022 06:24:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ff9397d9-d4a4-49ea-b45c-0e8a70f45acf", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032606Z:e83a33e9-1552-4621-a3c2-58f1c4ef191d", + "client-request-id" : "d55a56c2-68bc-4480-af11-49acb4bd998a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062451Z:9c1a443e-ec26-40f1-8ed4-dbaa82513f7d", "Expires" : "-1", - "x-ms-request-id" : "b301459a-ce92-483f-8964-1e0890520aaa", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "bd94e246-1ea9-420c-a428-4695ed1474da", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "985366e8-e8b6-4dd7-8710-9518274bdf3e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bd9a292b-8e20-4a25-af2e-72e533bb8e97" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "4a7218be-bfba-426a-b104-7b013abf3ec2", - "Date" : "Mon, 23 Aug 2021 03:26:36 GMT", + "x-ms-correlation-request-id" : "907b21c8-8d9d-4b8e-91e6-762510e3ee44", + "Date" : "Sun, 06 Mar 2022 06:25:22 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "985366e8-e8b6-4dd7-8710-9518274bdf3e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032637Z:4a7218be-bfba-426a-b104-7b013abf3ec2", + "client-request-id" : "bd9a292b-8e20-4a25-af2e-72e533bb8e97", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062522Z:907b21c8-8d9d-4b8e-91e6-762510e3ee44", "Expires" : "-1", - "x-ms-request-id" : "d27c343d-0d97-4e97-ad45-aeac20d4a5c5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "e33f0e8a-f9f0-4afa-9ff3-7f693d9d839f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6abaa0a4-6f76-477c-a51d-715d2030647d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5e0cc685-69aa-4c9c-86e6-2c5930bf3c92" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "d6384f2c-472e-4f41-abc7-dc35d8729217", - "Date" : "Mon, 23 Aug 2021 03:27:07 GMT", + "x-ms-correlation-request-id" : "12d23f0d-e4d1-499e-9e6e-5b8f56b2d9a7", + "Date" : "Sun, 06 Mar 2022 06:25:52 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "6abaa0a4-6f76-477c-a51d-715d2030647d", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032707Z:d6384f2c-472e-4f41-abc7-dc35d8729217", + "client-request-id" : "5e0cc685-69aa-4c9c-86e6-2c5930bf3c92", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062552Z:12d23f0d-e4d1-499e-9e6e-5b8f56b2d9a7", "Expires" : "-1", - "x-ms-request-id" : "7d3b7c68-e75f-4786-bd9b-553dee2da35a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "e154f398-03b1-427a-81ce-79d41d83e0ee", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b6021b1-c734-4ff6-9cc8-d771248f58e1" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "aee307bd-bd06-4159-aafb-a9fc0e45cd45" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "f1238f9e-7dfb-4e8c-81ee-1effad052a51", - "Date" : "Mon, 23 Aug 2021 03:27:37 GMT", + "x-ms-correlation-request-id" : "a90db5d7-2a0f-4a9f-a3c7-d445010e1f2b", + "Date" : "Sun, 06 Mar 2022 06:26:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "6b6021b1-c734-4ff6-9cc8-d771248f58e1", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032737Z:f1238f9e-7dfb-4e8c-81ee-1effad052a51", + "client-request-id" : "aee307bd-bd06-4159-aafb-a9fc0e45cd45", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062624Z:a90db5d7-2a0f-4a9f-a3c7-d445010e1f2b", "Expires" : "-1", - "x-ms-request-id" : "3135817b-5c04-451a-8329-dfac721f0785", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "03d151f5-44d3-4ce2-a4da-0ef48858a67c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5036ad9-429b-4587-bcce-520bec659fcb" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f72235f7-597b-4887-90db-20013f7bff36" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "1607d2ca-fde9-4c73-a470-33f08b2aa222", - "Date" : "Mon, 23 Aug 2021 03:28:07 GMT", + "x-ms-correlation-request-id" : "b4f272bc-516c-44e0-8720-b889a9fc937d", + "Date" : "Sun, 06 Mar 2022 06:26:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f5036ad9-429b-4587-bcce-520bec659fcb", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032808Z:1607d2ca-fde9-4c73-a470-33f08b2aa222", + "client-request-id" : "f72235f7-597b-4887-90db-20013f7bff36", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062654Z:b4f272bc-516c-44e0-8720-b889a9fc937d", "Expires" : "-1", - "x-ms-request-id" : "5891a11e-40d7-40e0-b420-6d9c75df830e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "b4562bcf-9841-4187-b150-a298816ccaed", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e72e5dc8-4cb0-4c53-90db-6cf13c524636" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "330361d7-7904-4905-9254-99445c3eb200" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "b421c081-97e9-47ed-b839-3fdc2f400471", - "Date" : "Mon, 23 Aug 2021 03:28:38 GMT", + "x-ms-correlation-request-id" : "83cabe85-a243-4880-b874-4f5215d030d5", + "Date" : "Sun, 06 Mar 2022 06:27:24 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e72e5dc8-4cb0-4c53-90db-6cf13c524636", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032838Z:b421c081-97e9-47ed-b839-3fdc2f400471", + "client-request-id" : "330361d7-7904-4905-9254-99445c3eb200", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062725Z:83cabe85-a243-4880-b874-4f5215d030d5", "Expires" : "-1", - "x-ms-request-id" : "5567ddfe-0d7b-49d1-949b-963c5b5fb31a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "8b0024d4-77c6-4660-9362-a856ed2b2daf", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cb0b1c80-6f5f-46d8-84aa-8bc66d07b269" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d39f7b79-6b6b-4a21-af34-3525e2916590" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "fef56824-d094-44e5-87b9-25533a543eb0", - "Date" : "Mon, 23 Aug 2021 03:29:09 GMT", + "x-ms-correlation-request-id" : "6ad74399-bb9c-405b-9c06-7ae7f945c1f1", + "Date" : "Sun, 06 Mar 2022 06:27:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cb0b1c80-6f5f-46d8-84aa-8bc66d07b269", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032910Z:fef56824-d094-44e5-87b9-25533a543eb0", + "client-request-id" : "d39f7b79-6b6b-4a21-af34-3525e2916590", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062755Z:6ad74399-bb9c-405b-9c06-7ae7f945c1f1", "Expires" : "-1", - "x-ms-request-id" : "7b74916f-4e28-4a25-ac36-030e98c1d6c9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "b1272d9c-defc-429a-8223-e20d4882ec9d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ff6d45c-5637-4560-b7d3-f0627f293398" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bb1539f1-5dcd-40e6-92a2-3cbfc09fe00e" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "baf8099c-80fc-4a13-8df1-0a1c95339ee5", - "Date" : "Mon, 23 Aug 2021 03:29:40 GMT", + "x-ms-correlation-request-id" : "2233d643-2bbe-44b1-9b29-c61122c823fc", + "Date" : "Sun, 06 Mar 2022 06:28:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8ff6d45c-5637-4560-b7d3-f0627f293398", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T032940Z:baf8099c-80fc-4a13-8df1-0a1c95339ee5", + "client-request-id" : "bb1539f1-5dcd-40e6-92a2-3cbfc09fe00e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062825Z:2233d643-2bbe-44b1-9b29-c61122c823fc", "Expires" : "-1", - "x-ms-request-id" : "3561c0bb-dae3-40fa-8cb7-46b4045342b9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "0abd4563-7a60-4197-8c02-978e76523517", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2752ed7e-0966-4a55-822b-21ed3de6a030" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b90a3c43-e00c-4d8e-87bc-330edddd6fad" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "2964fb23-52ae-47df-9d2f-18615b645ce2", - "Date" : "Mon, 23 Aug 2021 03:30:10 GMT", + "x-ms-correlation-request-id" : "eee71b21-2305-4282-8a69-a07e1213881b", + "Date" : "Sun, 06 Mar 2022 06:28:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "2752ed7e-0966-4a55-822b-21ed3de6a030", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033011Z:2964fb23-52ae-47df-9d2f-18615b645ce2", + "client-request-id" : "b90a3c43-e00c-4d8e-87bc-330edddd6fad", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062856Z:eee71b21-2305-4282-8a69-a07e1213881b", "Expires" : "-1", - "x-ms-request-id" : "6a9723ed-d4b6-4336-9741-ff5dd5aae075", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "05ac1373-ca7c-465f-b350-5a28c2a119e5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea984211-7220-4a79-b1ac-4a87635ada3b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "02260a94-25f8-418f-b320-5a633850d3bf" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "3f63bb3b-8a4b-4857-8c07-e54bd3f7e9e1", - "Date" : "Mon, 23 Aug 2021 03:30:41 GMT", + "x-ms-correlation-request-id" : "dda88f25-d9d0-400c-96d4-07b9cc609001", + "Date" : "Sun, 06 Mar 2022 06:29:26 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ea984211-7220-4a79-b1ac-4a87635ada3b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033042Z:3f63bb3b-8a4b-4857-8c07-e54bd3f7e9e1", + "client-request-id" : "02260a94-25f8-418f-b320-5a633850d3bf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062926Z:dda88f25-d9d0-400c-96d4-07b9cc609001", "Expires" : "-1", - "x-ms-request-id" : "7fa6bda4-87b6-4eba-9793-fb9bf7843c48", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "0bda334a-641d-4bec-b2d0-239e0c935fab", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "01093da9-43cf-4f05-8b51-ddf177ed4357" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "cd93fed5-2916-4eb7-8018-01a885277b34" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "56d76142-7a4c-4b4e-81e6-b9c4cf167462", - "Date" : "Mon, 23 Aug 2021 03:31:13 GMT", + "x-ms-correlation-request-id" : "d2e93ad5-05fc-4190-98b9-68902698521b", + "Date" : "Sun, 06 Mar 2022 06:29:56 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "01093da9-43cf-4f05-8b51-ddf177ed4357", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033113Z:56d76142-7a4c-4b4e-81e6-b9c4cf167462", + "client-request-id" : "cd93fed5-2916-4eb7-8018-01a885277b34", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062957Z:d2e93ad5-05fc-4190-98b9-68902698521b", "Expires" : "-1", - "x-ms-request-id" : "f6fbac15-8b4c-4310-ac65-bfbacb351940", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "d5384e65-c6cb-4ca1-b284-93fc04ab3f49", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36c4cb51-806b-48d0-9330-c5af683a3c94" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3fdbf67a-7dbe-46e8-9d95-d8387dd21676" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "900bbe10-b193-4992-aa57-ef3a2a570573", - "Date" : "Mon, 23 Aug 2021 03:31:43 GMT", + "x-ms-correlation-request-id" : "6af99171-cbf1-41ff-937c-f55baf0dd9e7", + "Date" : "Sun, 06 Mar 2022 06:30:26 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "36c4cb51-806b-48d0-9330-c5af683a3c94", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033143Z:900bbe10-b193-4992-aa57-ef3a2a570573", + "client-request-id" : "3fdbf67a-7dbe-46e8-9d95-d8387dd21676", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063027Z:6af99171-cbf1-41ff-937c-f55baf0dd9e7", "Expires" : "-1", - "x-ms-request-id" : "3c242270-4812-4793-9377-048538e3b3ec", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "82eea428-649b-4623-8365-b976ccd9f8a3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "52c5bc96-db1a-411a-97e1-cd1712a4beb6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6487029b-57e6-4004-a47c-06e76ed28b05" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "f5df5115-c85d-45aa-bfae-d16351b45fa0", - "Date" : "Mon, 23 Aug 2021 03:32:14 GMT", + "x-ms-correlation-request-id" : "5a729c96-986d-4cac-9b15-24276f245f1e", + "Date" : "Sun, 06 Mar 2022 06:30:57 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "52c5bc96-db1a-411a-97e1-cd1712a4beb6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033214Z:f5df5115-c85d-45aa-bfae-d16351b45fa0", + "client-request-id" : "6487029b-57e6-4004-a47c-06e76ed28b05", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063057Z:5a729c96-986d-4cac-9b15-24276f245f1e", "Expires" : "-1", - "x-ms-request-id" : "1fc5bce3-cd27-4c07-9b88-47ca84e8fa43", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "80a3ebe4-ffb1-43ca-845d-7909aff05619", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "535773b5-9410-4b5e-8b31-e86632105f32" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "25b2278e-7ec2-45ac-a814-bd3005b94e70" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "1db1a2b4-b0b9-43a0-b607-3822d90dbaa8", - "Date" : "Mon, 23 Aug 2021 03:32:44 GMT", + "x-ms-correlation-request-id" : "2849c4e8-c77e-4863-a4f2-5423df455795", + "Date" : "Sun, 06 Mar 2022 06:31:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "535773b5-9410-4b5e-8b31-e86632105f32", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033245Z:1db1a2b4-b0b9-43a0-b607-3822d90dbaa8", + "client-request-id" : "25b2278e-7ec2-45ac-a814-bd3005b94e70", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063129Z:2849c4e8-c77e-4863-a4f2-5423df455795", "Expires" : "-1", - "x-ms-request-id" : "c08edf22-836d-44c6-8f35-dd0b8277c8cd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "9e074349-9d3f-4b23-960d-f8c5a2f415e3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "29623636-87c7-4b47-bab7-87c39b3caea6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "55707ab8-2980-464f-a70e-8065883f5c0d" }, "Response" : { - "content-length" : "833", + "content-length" : "834", "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", - "x-ms-correlation-request-id" : "db371c2f-c892-4591-a517-a6509147f92a", - "Date" : "Mon, 23 Aug 2021 03:33:14 GMT", + "x-ms-correlation-request-id" : "886d612f-b6d4-4d72-8b82-7afd51e6b1f5", + "Date" : "Sun, 06 Mar 2022 06:31:59 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "29623636-87c7-4b47-bab7-87c39b3caea6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033315Z:db371c2f-c892-4591-a517-a6509147f92a", + "client-request-id" : "55707ab8-2980-464f-a70e-8065883f5c0d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063159Z:886d612f-b6d4-4d72-8b82-7afd51e6b1f5", "Expires" : "-1", - "x-ms-request-id" : "de177840-e843-4c28-9996-3d8f69796962", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "0705fc54-3be2-4869-8155-6aec171c5d30", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0357656-b973-416c-8d2e-f6d2f5f8b3d7" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4e29f8a0-a566-42ad-b88a-0e23f9e6ab02" }, "Response" : { - "content-length" : "833", + "content-length" : "834", "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", - "x-ms-correlation-request-id" : "c0212000-f49b-4d02-a9eb-50d5228a82cb", - "Date" : "Mon, 23 Aug 2021 03:33:45 GMT", + "x-ms-correlation-request-id" : "b438e761-0d80-4e6c-8aad-b23483b7d69a", + "Date" : "Sun, 06 Mar 2022 06:32:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e0357656-b973-416c-8d2e-f6d2f5f8b3d7", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033346Z:c0212000-f49b-4d02-a9eb-50d5228a82cb", + "client-request-id" : "4e29f8a0-a566-42ad-b88a-0e23f9e6ab02", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063230Z:b438e761-0d80-4e6c-8aad-b23483b7d69a", "Expires" : "-1", - "x-ms-request-id" : "c55c1b2a-cba4-4c25-9956-721ca0ab87f6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "a1305d71-5c7e-4bc1-85b3-89dd1d881f52", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "43e78461-176e-4079-9d13-f707a94ecc83" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ed9d2368-ef83-4ffd-aca0-d1f29043bbfe" }, "Response" : { - "content-length" : "831", + "content-length" : "835", "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", - "x-ms-correlation-request-id" : "c21c27fe-dad8-4c5d-90f2-ffd179e0ad41", - "Date" : "Mon, 23 Aug 2021 03:34:15 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", - "Cache-Control" : "no-cache", - "client-request-id" : "43e78461-176e-4079-9d13-f707a94ecc83", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033416Z:c21c27fe-dad8-4c5d-90f2-ffd179e0ad41", - "Expires" : "-1", - "x-ms-request-id" : "e4f740e9-f89a-4228-9f91-0bc750d2242f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d2faee7-6003-467e-be8c-7cb8f963f4fa" - }, - "Response" : { - "content-length" : "832", - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e2a68dd4-9ea8-4e4e-9c3e-9a14feee4f2b", - "Date" : "Mon, 23 Aug 2021 03:34:47 GMT", + "x-ms-correlation-request-id" : "bdeccd53-73d9-40f8-946e-a63523059b03", + "Date" : "Sun, 06 Mar 2022 06:33:00 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4d2faee7-6003-467e-be8c-7cb8f963f4fa", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033447Z:e2a68dd4-9ea8-4e4e-9c3e-9a14feee4f2b", + "client-request-id" : "ed9d2368-ef83-4ffd-aca0-d1f29043bbfe", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063301Z:bdeccd53-73d9-40f8-946e-a63523059b03", "Expires" : "-1", - "x-ms-request-id" : "9cb35a82-8c40-47f0-8fbf-8154748afd29", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "78ec2921-c5cd-4fd1-8d7f-e5f7049c8ffc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/firewallRules/rule1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/firewallRules/rule2?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a98d4091-3e27-4bb9-9304-1ecb1aafd665", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7f6cc064-f19b-482f-af73-f2bf342d8ae7", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "309", + "content-length" : "311", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "b07cca5d-63d4-45d3-ab94-e2779396ae45", - "Date" : "Mon, 23 Aug 2021 03:34:47 GMT", + "x-ms-correlation-request-id" : "c06847e7-2f78-4294-9e52-db45ca6a196c", + "Date" : "Sun, 06 Mar 2022 06:33:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a98d4091-3e27-4bb9-9304-1ecb1aafd665", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033447Z:b07cca5d-63d4-45d3-ab94-e2779396ae45", + "client-request-id" : "7f6cc064-f19b-482f-af73-f2bf342d8ae7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063301Z:c06847e7-2f78-4294-9e52-db45ca6a196c", "Expires" : "-1", - "x-ms-request-id" : "54eaeeeb-fd33-4f64-bdae-5ac12d58c45b", - "Body" : "{\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/firewallRules/rule1\",\"name\":\"javacsmrc72809Third/rule1\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", + "x-ms-request-id" : "84891652-259f-4ccb-bddc-46ab71c1de26", + "Body" : "{\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/firewallRules/rule2\",\"name\":\"javacsmrc16532Third/rule2\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/firewallRules/rule1?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/firewallRules/rule2?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/firewallRules/rule2?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/firewallRules/rule1?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "078644f7-45bc-4011-a262-268e82c0ca28", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bfb6af13-6388-4dfa-88c7-681a55ff04da", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "311", + "content-length" : "309", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "528accba-b166-42b9-8010-a8e42dd6f8f3", - "Date" : "Mon, 23 Aug 2021 03:34:47 GMT", + "x-ms-correlation-request-id" : "06202c70-c44f-460a-9746-6de7c08f740b", + "Date" : "Sun, 06 Mar 2022 06:33:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "078644f7-45bc-4011-a262-268e82c0ca28", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033447Z:528accba-b166-42b9-8010-a8e42dd6f8f3", + "client-request-id" : "bfb6af13-6388-4dfa-88c7-681a55ff04da", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063301Z:06202c70-c44f-460a-9746-6de7c08f740b", "Expires" : "-1", - "x-ms-request-id" : "a659d1e4-c515-4650-9f44-9a9f781e8721", - "Body" : "{\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/firewallRules/rule2\",\"name\":\"javacsmrc72809Third/rule2\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", + "x-ms-request-id" : "f381f64f-da77-4e50-a057-17676c814d39", + "Body" : "{\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/firewallRules/rule1\",\"name\":\"javacsmrc16532Third/rule1\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/firewallRules/rule2?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/firewallRules/rule1?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/patchSchedules/default?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/patchSchedules/default?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e414d415-7ab1-4ed8-b9d6-62253f541b5b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "440a7397-89d0-4e35-83a8-d4df41c31345", "Content-Type" : "application/json" }, "Response" : { "content-length" : "382", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed8bd14f-2d9d-473f-a69f-e77a0f26e013", - "Date" : "Mon, 23 Aug 2021 03:34:47 GMT", + "x-ms-correlation-request-id" : "7030614e-c54d-43fa-bf23-a946bf21a913", + "Date" : "Sun, 06 Mar 2022 06:33:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e414d415-7ab1-4ed8-b9d6-62253f541b5b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033448Z:ed8bd14f-2d9d-473f-a69f-e77a0f26e013", + "client-request-id" : "440a7397-89d0-4e35-83a8-d4df41c31345", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063301Z:7030614e-c54d-43fa-bf23-a946bf21a913", "Expires" : "-1", - "x-ms-request-id" : "7ff13cb9-f2e9-436b-acd9-cd73d558c52a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Saturday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", + "x-ms-request-id" : "b8f9f9f3-b088-47e9-91f4-5fcd16e7db13", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Saturday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "85675356-2198-4c06-8d93-4b9969bfe6ea", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c2056110-ff2e-483d-843b-4b68500a6fe8", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3ef57b6-88d6-484a-afbf-3948ddf33ec0", - "Date" : "Mon, 23 Aug 2021 03:34:49 GMT", + "x-ms-correlation-request-id" : "ea6a0923-b573-4afe-a6bc-289f09e6e575", + "Date" : "Sun, 06 Mar 2022 06:33:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "85675356-2198-4c06-8d93-4b9969bfe6ea", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033449Z:d3ef57b6-88d6-484a-afbf-3948ddf33ec0", + "client-request-id" : "c2056110-ff2e-483d-843b-4b68500a6fe8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063302Z:ea6a0923-b573-4afe-a6bc-289f09e6e575", "Expires" : "-1", - "x-ms-request-id" : "41a4e193-af74-4742-90fd-822de4dfbd13", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c9879ac1-4e27-4b88-af31-564205ffeb0f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/firewallRules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d2a9a36-a6ba-472c-afcf-88aa5c7c9acf", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "52308474-35fa-46e6-9246-e0c1c7dec997", "Content-Type" : "application/json" }, "Response" : { @@ -939,27 +912,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d11ee628-405d-402f-ae4d-ae485757ffcf", - "Date" : "Mon, 23 Aug 2021 03:34:49 GMT", + "x-ms-correlation-request-id" : "8c5804ce-336e-4705-a9b6-1df6d59d2d3b", + "Date" : "Sun, 06 Mar 2022 06:33:02 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8d2a9a36-a6ba-472c-afcf-88aa5c7c9acf", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033450Z:d11ee628-405d-402f-ae4d-ae485757ffcf", + "client-request-id" : "52308474-35fa-46e6-9246-e0c1c7dec997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063302Z:8c5804ce-336e-4705-a9b6-1df6d59d2d3b", "Expires" : "-1", - "x-ms-request-id" : "f8db6808-dec4-4bca-81bc-a5dd0e360e2f", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/firewallRules/rule1\",\"name\":\"javacsmrc72809Third/rule1\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/firewallRules/rule2\",\"name\":\"javacsmrc72809Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}}]}", + "x-ms-request-id" : "9d9b0402-3499-4226-9520-c05386620419", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/firewallRules/rule1\",\"name\":\"javacsmrc16532Third/rule1\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/firewallRules/rule2\",\"name\":\"javacsmrc16532Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2b61081-1c51-47f6-9062-0834c5675b8c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7676ba34-492c-4ff1-8b87-87afabbb6a2a", "Content-Type" : "application/json" }, "Response" : { @@ -968,786 +941,787 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6182f38f-a50c-4070-9461-100812ce8935", - "Date" : "Mon, 23 Aug 2021 03:34:49 GMT", + "x-ms-correlation-request-id" : "06e8d975-7a66-4e9f-8444-99346e060e18", + "Date" : "Sun, 06 Mar 2022 06:33:02 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d2b61081-1c51-47f6-9062-0834c5675b8c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033450Z:6182f38f-a50c-4070-9461-100812ce8935", + "client-request-id" : "7676ba34-492c-4ff1-8b87-87afabbb6a2a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063303Z:06e8d975-7a66-4e9f-8444-99346e060e18", "Expires" : "-1", - "x-ms-request-id" : "853d49d8-51c5-49b5-bad2-08f355e7bc9a", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Saturday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}]}", + "x-ms-request-id" : "8a9003d6-6a5c-47fc-bb82-7fabacdecf43", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Saturday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b211ae8-88b1-4d7a-bc2c-5310933e3d60", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f110b43b-263a-4608-8f75-d41379a09310", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "915", + "content-length" : "1241", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "6031fe6a-31bb-4c7f-863c-1d5c8fbce586", - "Date" : "Mon, 23 Aug 2021 03:34:55 GMT", + "x-ms-correlation-request-id" : "251697b3-b1cf-4cbe-b127-090ba89f74d0", + "Date" : "Sun, 06 Mar 2022 06:33:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "5b211ae8-88b1-4d7a-bc2c-5310933e3d60", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033456Z:6031fe6a-31bb-4c7f-863c-1d5c8fbce586", + "client-request-id" : "f110b43b-263a-4608-8f75-d41379a09310", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063310Z:251697b3-b1cf-4cbe-b127-090ba89f74d0", "Expires" : "-1", - "x-ms-request-id" : "f2e56f7c-026c-4862-8944-596f8de037a5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"},\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East US/asyncOperations/d503c25e-bb4e-456f-84c9-481de18c27b9?api-version=2021-06-01", + "x-ms-request-id" : "d503c25e-bb4e-456f-84c9-481de18c27b9", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\r\n \"location\": \"East US\",\r\n \"name\": \"javacsmrc16532Second\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.1.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"15000\",\r\n \"maxmemory-reserved\": \"1330\",\r\n \"maxfragmentationmemory-reserved\": \"1330\",\r\n \"maxmemory-delta\": \"1330\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"***REMOVED***\",\r\n \"secondaryKey\": \"***REMOVED***\"\r\n },\r\n \"hostName\": \"javacsmrc16532Second.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8c10fc7-cd96-4de3-b955-214a18be54d8" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0ea66cdf-b438-4f08-b321-8235144f612e" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c9573f8a-d2d5-48e5-8777-1ab80496faac", - "Date" : "Mon, 23 Aug 2021 03:35:26 GMT", + "x-ms-correlation-request-id" : "4f175330-675b-4431-b115-91a6ee152e7a", + "Date" : "Sun, 06 Mar 2022 06:33:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a8c10fc7-cd96-4de3-b955-214a18be54d8", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033526Z:c9573f8a-d2d5-48e5-8777-1ab80496faac", + "client-request-id" : "0ea66cdf-b438-4f08-b321-8235144f612e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063340Z:4f175330-675b-4431-b115-91a6ee152e7a", "Expires" : "-1", - "x-ms-request-id" : "0cd18124-3c21-42a7-afa9-41b56e509c41", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "a53fbd79-5952-4dad-9f62-1a3d4b66da19", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd34091e-2481-49e9-b459-69e481d32f35" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "53856dd2-1df7-4a6b-ba93-021ab3a4a2a6" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", - "x-ms-correlation-request-id" : "5c79bfad-3036-477f-b516-12630ddf03bf", - "Date" : "Mon, 23 Aug 2021 03:35:57 GMT", + "x-ms-correlation-request-id" : "b0e9538c-0ef2-4ec1-beda-3fc1e2c05570", + "Date" : "Sun, 06 Mar 2022 06:34:10 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "dd34091e-2481-49e9-b459-69e481d32f35", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033557Z:5c79bfad-3036-477f-b516-12630ddf03bf", + "client-request-id" : "53856dd2-1df7-4a6b-ba93-021ab3a4a2a6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063411Z:b0e9538c-0ef2-4ec1-beda-3fc1e2c05570", "Expires" : "-1", - "x-ms-request-id" : "e03eb88c-702d-4193-8b51-6f792812cd82", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "abf0c0ec-0119-427c-af52-bf7c17a5092f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e2fc6b6-2889-4391-a9f6-b321f15c6c3c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c241044c-6395-49ce-ba81-63914f7425c5" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bae8a3d5-230f-4146-b361-89b76a6aba59", - "Date" : "Mon, 23 Aug 2021 03:36:28 GMT", + "x-ms-correlation-request-id" : "baa9fb35-9595-49c6-8ac4-7422ca3509a9", + "Date" : "Sun, 06 Mar 2022 06:34:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "3e2fc6b6-2889-4391-a9f6-b321f15c6c3c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033628Z:bae8a3d5-230f-4146-b361-89b76a6aba59", + "client-request-id" : "c241044c-6395-49ce-ba81-63914f7425c5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063442Z:baa9fb35-9595-49c6-8ac4-7422ca3509a9", "Expires" : "-1", - "x-ms-request-id" : "e0231b4c-29c7-42e6-b724-fd04ef7275e5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "a8e6317c-3132-4bb2-8ead-be3a05b00097", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74716b06-b002-4847-bbcf-d6c00d67c3c0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "387d3e83-6973-45f8-b347-bd0bdcfd8584" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", - "x-ms-correlation-request-id" : "abaa8d37-c12f-4873-b4bf-16c6df9ade8c", - "Date" : "Mon, 23 Aug 2021 03:36:59 GMT", + "x-ms-correlation-request-id" : "a9e47dca-bea1-4adc-8b85-9960826e4c77", + "Date" : "Sun, 06 Mar 2022 06:35:13 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "74716b06-b002-4847-bbcf-d6c00d67c3c0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033659Z:abaa8d37-c12f-4873-b4bf-16c6df9ade8c", + "client-request-id" : "387d3e83-6973-45f8-b347-bd0bdcfd8584", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063514Z:a9e47dca-bea1-4adc-8b85-9960826e4c77", "Expires" : "-1", - "x-ms-request-id" : "9feab351-ee85-46d1-8dc6-5962c8d291e7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "5c17115b-5287-451d-aa13-a8d5f03f8f7a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d7c6740-33f0-4b97-9445-52ff504a2d68" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8fe13bf0-f868-4a01-b20a-beb13a45ebed" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed53fb0b-d7b1-48eb-9346-481cf857e2eb", - "Date" : "Mon, 23 Aug 2021 03:37:30 GMT", + "x-ms-correlation-request-id" : "be5a5bd4-f333-49d0-b360-9cc4f6900d2b", + "Date" : "Sun, 06 Mar 2022 06:35:43 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "7d7c6740-33f0-4b97-9445-52ff504a2d68", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033730Z:ed53fb0b-d7b1-48eb-9346-481cf857e2eb", + "client-request-id" : "8fe13bf0-f868-4a01-b20a-beb13a45ebed", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063544Z:be5a5bd4-f333-49d0-b360-9cc4f6900d2b", "Expires" : "-1", - "x-ms-request-id" : "16c89331-a487-45be-b259-275f374b0b87", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "8913e4cb-6a38-43af-891f-a3b67a14964c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "201f3878-c369-445a-8a91-de7eab2d48ff" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d8c333f4-16e4-4351-9ee5-ee455a53e767" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f83edf45-8129-4608-8a5e-692a05c7d13d", - "Date" : "Mon, 23 Aug 2021 03:38:01 GMT", + "x-ms-correlation-request-id" : "32b176cd-0490-4c90-b500-0b345bbc32b7", + "Date" : "Sun, 06 Mar 2022 06:36:15 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "201f3878-c369-445a-8a91-de7eab2d48ff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033801Z:f83edf45-8129-4608-8a5e-692a05c7d13d", + "client-request-id" : "d8c333f4-16e4-4351-9ee5-ee455a53e767", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063615Z:32b176cd-0490-4c90-b500-0b345bbc32b7", "Expires" : "-1", - "x-ms-request-id" : "1b28aea5-5f1f-4f1f-a60a-687de6651390", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "94c88c43-a90e-4334-8148-13b5efab08f7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa20f52c-6c96-4a1d-baef-8d0ec9728190" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0bc88e82-9535-4507-9d8f-c4111fb4071f" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", - "x-ms-correlation-request-id" : "67532520-e283-409b-8595-0bc23fcfaefc", - "Date" : "Mon, 23 Aug 2021 03:38:32 GMT", + "x-ms-correlation-request-id" : "4cec00c9-f310-4ba2-88f8-bc26c54bd3dd", + "Date" : "Sun, 06 Mar 2022 06:36:45 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "fa20f52c-6c96-4a1d-baef-8d0ec9728190", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033832Z:67532520-e283-409b-8595-0bc23fcfaefc", + "client-request-id" : "0bc88e82-9535-4507-9d8f-c4111fb4071f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063645Z:4cec00c9-f310-4ba2-88f8-bc26c54bd3dd", "Expires" : "-1", - "x-ms-request-id" : "82d04c1a-3b63-4773-9f28-b6964f30a8bd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "9e3373aa-17e3-47ba-b3cb-a6b14fafea2f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0840c7fe-8baf-4354-b265-c2f51b2eda2c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "67841fdd-d4a9-40ce-8589-28a5e76200d9" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ae8fd679-371d-45e7-97f3-5a12ea9c2c4b", - "Date" : "Mon, 23 Aug 2021 03:39:03 GMT", + "x-ms-correlation-request-id" : "757cd09e-833a-4dee-925f-ec27841d6ba8", + "Date" : "Sun, 06 Mar 2022 06:37:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "0840c7fe-8baf-4354-b265-c2f51b2eda2c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033903Z:ae8fd679-371d-45e7-97f3-5a12ea9c2c4b", + "client-request-id" : "67841fdd-d4a9-40ce-8589-28a5e76200d9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063716Z:757cd09e-833a-4dee-925f-ec27841d6ba8", "Expires" : "-1", - "x-ms-request-id" : "1f459ee8-416c-4347-b318-6c201c224546", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "98a065f0-7e25-4ef0-82e3-319ec000ad87", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "651dbb91-2d00-4079-92a2-3bd0617cd646" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5a53bf72-e4f6-48a6-8c07-d2c6f14c26ec" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "200", - "x-ms-correlation-request-id" : "572c32e9-b552-458c-917b-d30e3034f27e", - "Date" : "Mon, 23 Aug 2021 03:39:36 GMT", + "x-ms-correlation-request-id" : "560f8cdb-cfb2-4c93-ae2f-80ed2866a72e", + "Date" : "Sun, 06 Mar 2022 06:37:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "651dbb91-2d00-4079-92a2-3bd0617cd646", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T033936Z:572c32e9-b552-458c-917b-d30e3034f27e", + "client-request-id" : "5a53bf72-e4f6-48a6-8c07-d2c6f14c26ec", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063747Z:560f8cdb-cfb2-4c93-ae2f-80ed2866a72e", "Expires" : "-1", - "x-ms-request-id" : "5073bd78-b329-4131-b577-e6228a89ad30", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "0f6da075-f0cb-4b7d-90f0-a2a6302f52fd", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1563fa9f-8451-4ac6-9015-f04826527f6f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2f397d89-8dc5-451a-8901-f74acd3e2e59" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "200", - "x-ms-correlation-request-id" : "638496dd-a913-49c5-b12b-d9e6852e4aed", - "Date" : "Mon, 23 Aug 2021 03:40:07 GMT", + "x-ms-correlation-request-id" : "a8583d35-0c4d-4d05-b2b1-d705e132e222", + "Date" : "Sun, 06 Mar 2022 06:38:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "1563fa9f-8451-4ac6-9015-f04826527f6f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034007Z:638496dd-a913-49c5-b12b-d9e6852e4aed", + "client-request-id" : "2f397d89-8dc5-451a-8901-f74acd3e2e59", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063818Z:a8583d35-0c4d-4d05-b2b1-d705e132e222", "Expires" : "-1", - "x-ms-request-id" : "85a7cee1-92df-4013-ac40-8f73dc142981", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "7ad96845-02ac-42dc-851e-db1903ed645f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4046da56-2a2b-4c12-bf16-5398a12e9ac3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8fbd0ccf-c060-4337-8b90-8cd502083e2e" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "200", - "x-ms-correlation-request-id" : "9f61c220-5647-49bb-924b-371b3d22ad8e", - "Date" : "Mon, 23 Aug 2021 03:40:40 GMT", + "x-ms-correlation-request-id" : "80efe139-a11b-4acb-8c71-b37bdedb599e", + "Date" : "Sun, 06 Mar 2022 06:38:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4046da56-2a2b-4c12-bf16-5398a12e9ac3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034041Z:9f61c220-5647-49bb-924b-371b3d22ad8e", + "client-request-id" : "8fbd0ccf-c060-4337-8b90-8cd502083e2e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063848Z:80efe139-a11b-4acb-8c71-b37bdedb599e", "Expires" : "-1", - "x-ms-request-id" : "2635e629-e29c-4a47-804d-3d8300eff367", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "9d371b57-ff11-4e57-84f7-e2a5c5734d51", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6dfb6b5d-e744-4d03-8357-ce6b9134e409" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f4a66e79-06ed-4640-9520-c25b698a4e99" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2f76b236-3d9d-475a-943e-9550410046c4", - "Date" : "Mon, 23 Aug 2021 03:41:11 GMT", + "x-ms-correlation-request-id" : "8eca3630-25fe-411f-8d15-738584f8640a", + "Date" : "Sun, 06 Mar 2022 06:39:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "6dfb6b5d-e744-4d03-8357-ce6b9134e409", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034112Z:2f76b236-3d9d-475a-943e-9550410046c4", + "client-request-id" : "f4a66e79-06ed-4640-9520-c25b698a4e99", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063919Z:8eca3630-25fe-411f-8d15-738584f8640a", "Expires" : "-1", - "x-ms-request-id" : "cf5a9f41-a3c9-4758-9936-db4f48fd8aa7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c4930768-cb5f-4bef-917c-50cd5f0ca075", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3885b41e-3b7f-41bb-b965-81301d2c0a2c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8557161e-224a-489e-ad13-cc959ca54cf6" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "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", - "x-ms-correlation-request-id" : "b0e05091-7e2f-413f-9d01-4ce153558b42", - "Date" : "Mon, 23 Aug 2021 03:41:43 GMT", + "x-ms-correlation-request-id" : "fab7144b-266e-4d90-8160-ecd31470bbe6", + "Date" : "Sun, 06 Mar 2022 06:39:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "3885b41e-3b7f-41bb-b965-81301d2c0a2c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034143Z:b0e05091-7e2f-413f-9d01-4ce153558b42", + "client-request-id" : "8557161e-224a-489e-ad13-cc959ca54cf6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063950Z:fab7144b-266e-4d90-8160-ecd31470bbe6", "Expires" : "-1", - "x-ms-request-id" : "e209f37d-689b-4f0e-8965-452f7396b777", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "d8d2a884-c1d8-4370-8f0d-25fdf407d9cb", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9065d3ed-9a82-446a-bc2d-0b091a131e0e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c135ee06-12ae-4401-8379-b71ee3539b5d" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "200", - "x-ms-correlation-request-id" : "48728a80-7bea-48c8-bafa-b93c7bba9a57", - "Date" : "Mon, 23 Aug 2021 03:42:14 GMT", + "x-ms-correlation-request-id" : "64e4df0a-c00e-4da0-8581-ffb4a75c24b9", + "Date" : "Sun, 06 Mar 2022 06:40:21 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "9065d3ed-9a82-446a-bc2d-0b091a131e0e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034215Z:48728a80-7bea-48c8-bafa-b93c7bba9a57", + "client-request-id" : "c135ee06-12ae-4401-8379-b71ee3539b5d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064021Z:64e4df0a-c00e-4da0-8581-ffb4a75c24b9", "Expires" : "-1", - "x-ms-request-id" : "f319ff2c-db24-4eb3-8f42-910e2898a5a9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "9cfd9e0c-c243-49c2-b0e9-f15638b25751", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bbdb2011-c319-454a-a43e-8cd1d8df833b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9d4a26b1-10b2-4592-90ef-4311c9de04c0" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f9ad9954-7927-4f79-acae-068473ee3a45", - "Date" : "Mon, 23 Aug 2021 03:42:46 GMT", + "x-ms-correlation-request-id" : "64567638-87c2-4491-870a-b325c7480bb6", + "Date" : "Sun, 06 Mar 2022 06:40:51 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "bbdb2011-c319-454a-a43e-8cd1d8df833b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034246Z:f9ad9954-7927-4f79-acae-068473ee3a45", + "client-request-id" : "9d4a26b1-10b2-4592-90ef-4311c9de04c0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064051Z:64567638-87c2-4491-870a-b325c7480bb6", "Expires" : "-1", - "x-ms-request-id" : "0e37bb35-4ca5-4df7-85ae-7d06f6106620", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "751e1f4d-162a-4189-bd21-04e87000342a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fffff370-d88b-48ac-a900-e0d75dcdb89e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1f9e5f79-f594-43ab-a8d8-7066ef0b0e13" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ef1b3670-90f9-4811-9532-60bd4d8830d1", - "Date" : "Mon, 23 Aug 2021 03:43:17 GMT", + "x-ms-correlation-request-id" : "ebda61de-6624-4622-9f36-6bc78ca4d4dd", + "Date" : "Sun, 06 Mar 2022 06:41:22 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "fffff370-d88b-48ac-a900-e0d75dcdb89e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034317Z:ef1b3670-90f9-4811-9532-60bd4d8830d1", + "client-request-id" : "1f9e5f79-f594-43ab-a8d8-7066ef0b0e13", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064123Z:ebda61de-6624-4622-9f36-6bc78ca4d4dd", "Expires" : "-1", - "x-ms-request-id" : "d9b36e11-5ab9-4fba-8a13-29829c23e3cc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "5a1d8c67-876f-4e2f-9ff5-80a863f2e880", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74518db4-662e-4678-88ac-7137c3d68b5c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "805dcf3a-4502-4fcd-b3bd-d8753666728b" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "200", - "x-ms-correlation-request-id" : "af4e2c36-2af8-4a9a-afa7-2330d027b1ed", - "Date" : "Mon, 23 Aug 2021 03:43:49 GMT", + "x-ms-correlation-request-id" : "3d8e9f59-8aed-47ef-80b8-4c3f5bcad574", + "Date" : "Sun, 06 Mar 2022 06:41:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "74518db4-662e-4678-88ac-7137c3d68b5c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034349Z:af4e2c36-2af8-4a9a-afa7-2330d027b1ed", + "client-request-id" : "805dcf3a-4502-4fcd-b3bd-d8753666728b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064153Z:3d8e9f59-8aed-47ef-80b8-4c3f5bcad574", "Expires" : "-1", - "x-ms-request-id" : "3290d25b-6de6-4e46-9c92-41493c4e8f25", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "b82d1391-645f-4753-9fe0-0fd9c44a0f99", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e74ff0d3-8bd3-4b4e-ac51-9493bf771eae" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8cb5d636-07de-4ae2-a865-d638bbb7d618" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", - "x-ms-correlation-request-id" : "789fc433-f643-4344-9f34-a621862cf6f7", - "Date" : "Mon, 23 Aug 2021 03:44:21 GMT", + "x-ms-correlation-request-id" : "2ede53b6-bbf5-49cc-9545-3b66b882b51c", + "Date" : "Sun, 06 Mar 2022 06:42:24 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e74ff0d3-8bd3-4b4e-ac51-9493bf771eae", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034421Z:789fc433-f643-4344-9f34-a621862cf6f7", + "client-request-id" : "8cb5d636-07de-4ae2-a865-d638bbb7d618", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064224Z:2ede53b6-bbf5-49cc-9545-3b66b882b51c", "Expires" : "-1", - "x-ms-request-id" : "7ddb7231-f132-4981-bbe4-58c710ae0e94", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "07a67015-fdcf-4bf8-816f-29a0c2a4c549", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9e00776-efc9-40bc-b771-1f9328aeebae" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "461d419a-f555-427f-b910-b18284e3eddd" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "200", - "x-ms-correlation-request-id" : "98b43fed-d40c-4ab1-9a65-b80b13e12b2b", - "Date" : "Mon, 23 Aug 2021 03:44:52 GMT", + "x-ms-correlation-request-id" : "32d75aff-2013-43d7-9074-c9ff8155722a", + "Date" : "Sun, 06 Mar 2022 06:42:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f9e00776-efc9-40bc-b771-1f9328aeebae", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034452Z:98b43fed-d40c-4ab1-9a65-b80b13e12b2b", + "client-request-id" : "461d419a-f555-427f-b910-b18284e3eddd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064255Z:32d75aff-2013-43d7-9074-c9ff8155722a", "Expires" : "-1", - "x-ms-request-id" : "af6742a3-d1e5-499b-9960-14b6d103f071", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "e3e0a2c6-3325-41f6-8732-5b22fbd079e8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dcf0a014-df28-4288-96e3-d714831fa25b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "75cb400d-4adf-4031-8ddb-32c014b0cecd" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "200", - "x-ms-correlation-request-id" : "668f8bf1-2e0b-4492-ab59-612e1f6f1004", - "Date" : "Mon, 23 Aug 2021 03:45:23 GMT", + "x-ms-correlation-request-id" : "73ebb254-2c48-44f1-8424-a1ce5d720052", + "Date" : "Sun, 06 Mar 2022 06:43:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "dcf0a014-df28-4288-96e3-d714831fa25b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034524Z:668f8bf1-2e0b-4492-ab59-612e1f6f1004", + "client-request-id" : "75cb400d-4adf-4031-8ddb-32c014b0cecd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064326Z:73ebb254-2c48-44f1-8424-a1ce5d720052", "Expires" : "-1", - "x-ms-request-id" : "4c0fa31f-1571-4b6e-9cb6-6778b6832714", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "822d9c80-2dcb-447c-86d7-0ee38e563a8b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "90120acb-5d6e-49aa-9387-012ac5ce2a74" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a796fe47-fcff-4cef-93e8-2c22e9b586f0" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", - "x-ms-correlation-request-id" : "257465a5-c4a6-4156-98fc-16f5621504ee", - "Date" : "Mon, 23 Aug 2021 03:45:54 GMT", + "x-ms-correlation-request-id" : "c7dc5c7b-a781-4a91-a1f0-429f80725863", + "Date" : "Sun, 06 Mar 2022 06:43:56 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "90120acb-5d6e-49aa-9387-012ac5ce2a74", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034555Z:257465a5-c4a6-4156-98fc-16f5621504ee", + "client-request-id" : "a796fe47-fcff-4cef-93e8-2c22e9b586f0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064357Z:c7dc5c7b-a781-4a91-a1f0-429f80725863", "Expires" : "-1", - "x-ms-request-id" : "57295f20-09f1-4122-9b1d-cf403b776f85", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "762ed238-18a3-41b0-b375-ba308cd2ba36", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3c8271ed-9c39-4713-8bd5-d76e453632d9" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e44918e6-5391-4b54-8a24-929aa28b6a08" }, "Response" : { - "content-length" : "796", + "content-length" : "799", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e4e16b2c-3dc2-4df2-9b2b-940adb7b3189", - "Date" : "Mon, 23 Aug 2021 03:46:26 GMT", + "x-ms-correlation-request-id" : "22456af5-dd8d-42f8-b218-1cae0c4e0efe", + "Date" : "Sun, 06 Mar 2022 06:44:27 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "3c8271ed-9c39-4713-8bd5-d76e453632d9", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034626Z:e4e16b2c-3dc2-4df2-9b2b-940adb7b3189", + "client-request-id" : "e44918e6-5391-4b54-8a24-929aa28b6a08", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064428Z:22456af5-dd8d-42f8-b218-1cae0c4e0efe", "Expires" : "-1", - "x-ms-request-id" : "08986222-4282-4cc6-a00f-991e70cb9eff", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c1be5dd7-4d3e-4a56-ae24-7c8ff972b8da", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a81e3f5c-07cb-45f5-a253-69f703f6bbc0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b351ea1f-3619-46fa-be43-4ca1ee19bc7c" }, "Response" : { - "content-length" : "794", + "content-length" : "797", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f36d250b-d3bc-4b31-9478-74e399715300", - "Date" : "Mon, 23 Aug 2021 03:46:57 GMT", + "x-ms-correlation-request-id" : "180e99bb-da5f-4269-a63e-e1754649bc82", + "Date" : "Sun, 06 Mar 2022 06:44:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a81e3f5c-07cb-45f5-a253-69f703f6bbc0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034658Z:f36d250b-d3bc-4b31-9478-74e399715300", + "client-request-id" : "b351ea1f-3619-46fa-be43-4ca1ee19bc7c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064458Z:180e99bb-da5f-4269-a63e-e1754649bc82", "Expires" : "-1", - "x-ms-request-id" : "458f8815-3c7f-4d19-a65f-dc50e14b44b1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "a28ab7de-98ef-412d-950e-bd73c4517440", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d25d1598-02da-4bc8-af46-72d6f16741a6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "59157c88-480a-4ae7-a9ec-66a5f0080dd3" }, "Response" : { - "content-length" : "794", + "content-length" : "797", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "200", - "x-ms-correlation-request-id" : "aaa1fdef-2bc0-4cee-bb82-019f021846b9", - "Date" : "Mon, 23 Aug 2021 03:47:29 GMT", + "x-ms-correlation-request-id" : "df05a23f-b6d2-4142-942e-334af6eb531a", + "Date" : "Sun, 06 Mar 2022 06:45:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d25d1598-02da-4bc8-af46-72d6f16741a6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034729Z:aaa1fdef-2bc0-4cee-bb82-019f021846b9", + "client-request-id" : "59157c88-480a-4ae7-a9ec-66a5f0080dd3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064530Z:df05a23f-b6d2-4142-942e-334af6eb531a", "Expires" : "-1", - "x-ms-request-id" : "fc3a84e2-511d-4bb9-98ad-cf68f6e3d87d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "04354510-2276-4b5f-b540-19fe2dffd1bc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "87597a46-0a39-414e-81cf-c5a087b436f4" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1e7e33d9-a1b1-4be6-8413-0465714433f0" }, "Response" : { - "content-length" : "795", + "content-length" : "798", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "200", - "x-ms-correlation-request-id" : "40304cdb-4ee4-4832-9ec3-e42c183bf17c", - "Date" : "Mon, 23 Aug 2021 03:48:00 GMT", + "x-ms-correlation-request-id" : "c4b768b0-bc24-4e45-a732-fb27fbd65439", + "Date" : "Sun, 06 Mar 2022 06:45:59 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "87597a46-0a39-414e-81cf-c5a087b436f4", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034800Z:40304cdb-4ee4-4832-9ec3-e42c183bf17c", + "client-request-id" : "1e7e33d9-a1b1-4be6-8413-0465714433f0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064600Z:c4b768b0-bc24-4e45-a732-fb27fbd65439", "Expires" : "-1", - "x-ms-request-id" : "b4aad802-ee6f-4a26-8102-e94ce44ba548", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "9c0786ae-430b-4e95-8523-5c43f1a92bc9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0978209-94f3-43a4-b7ea-883d7dacf950", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f9f25acb-6145-4063-a7fd-c5295be5e3bc", "Content-Type" : "application/json" }, "Response" : { "content-length" : "582", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "a670e7fc-eaf8-478c-b98e-c2604282c3b1", - "Date" : "Mon, 23 Aug 2021 03:48:02 GMT", + "x-ms-correlation-request-id" : "5a5eae72-c95f-4f69-8289-8960b4e450a1", + "Date" : "Sun, 06 Mar 2022 06:46:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "b0978209-94f3-43a4-b7ea-883d7dacf950", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034802Z:a670e7fc-eaf8-478c-b98e-c2604282c3b1", + "client-request-id" : "f9f25acb-6145-4063-a7fd-c5295be5e3bc", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064601Z:5a5eae72-c95f-4f69-8289-8960b4e450a1", "Expires" : "-1", - "x-ms-request-id" : "b5168b47-a1b2-472e-96a8-8985e8385089", - "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\r\n \"name\": \"javacsmrc72809Second\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "x-ms-request-id" : "b5bb6511-ae19-4f08-8144-cfc05ff62d02", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\r\n \"name\": \"javacsmrc16532Second\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"serverRole\": \"Primary\",\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "324a5c5e-14a0-4f6a-8362-a0cfb16dc5d1" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f4b032b5-7c56-4706-9f30-71a2d746cbc2" }, "Response" : { "content-length" : "528", @@ -1755,27 +1729,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6cd967c9-d3e1-4d0d-bd8c-6b687bedeb96", - "Date" : "Mon, 23 Aug 2021 03:48:33 GMT", + "x-ms-correlation-request-id" : "b8cbfc34-2d05-48d3-9542-74602f214c17", + "Date" : "Sun, 06 Mar 2022 06:46:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "324a5c5e-14a0-4f6a-8362-a0cfb16dc5d1", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034834Z:6cd967c9-d3e1-4d0d-bd8c-6b687bedeb96", + "client-request-id" : "f4b032b5-7c56-4706-9f30-71a2d746cbc2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064633Z:b8cbfc34-2d05-48d3-9542-74602f214c17", "Expires" : "-1", - "x-ms-request-id" : "e181dec0-94c4-4efa-9e6c-28a84c595495", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", + "x-ms-request-id" : "bdcbd452-dcbd-4f85-937e-816152c57cee", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5296396-9ebe-43b3-af7f-0d3de404c02f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b51454de-cdd7-4730-9e4d-61fd36ed4abf" }, "Response" : { "content-length" : "528", @@ -1783,27 +1757,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e41ded9-16cd-4fc5-9705-101970742751", - "Date" : "Mon, 23 Aug 2021 03:49:04 GMT", + "x-ms-correlation-request-id" : "b5d0a56c-07c3-438c-aafe-23e2d32fc6c1", + "Date" : "Sun, 06 Mar 2022 06:47:04 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "b5296396-9ebe-43b3-af7f-0d3de404c02f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034905Z:8e41ded9-16cd-4fc5-9705-101970742751", + "client-request-id" : "b51454de-cdd7-4730-9e4d-61fd36ed4abf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064704Z:b5d0a56c-07c3-438c-aafe-23e2d32fc6c1", "Expires" : "-1", - "x-ms-request-id" : "9368f7e3-bafc-4cd6-9788-cc026a37563f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", + "x-ms-request-id" : "35bdf56b-379e-41b3-b06e-301b2b6ca81a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "61945184-a2ca-4027-917d-673a4e6a5771" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "75c58d1f-3f11-4d79-bc7b-c04cc0dfe3b8" }, "Response" : { "content-length" : "528", @@ -1811,27 +1785,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bad2c96c-3e5c-4887-aab2-1ab47fc7ab03", - "Date" : "Mon, 23 Aug 2021 03:49:35 GMT", + "x-ms-correlation-request-id" : "1de9d87b-2289-4e95-9a3d-b4c8ad4561ef", + "Date" : "Sun, 06 Mar 2022 06:47:36 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "61945184-a2ca-4027-917d-673a4e6a5771", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T034936Z:bad2c96c-3e5c-4887-aab2-1ab47fc7ab03", + "client-request-id" : "75c58d1f-3f11-4d79-bc7b-c04cc0dfe3b8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064736Z:1de9d87b-2289-4e95-9a3d-b4c8ad4561ef", "Expires" : "-1", - "x-ms-request-id" : "934fa5d3-99a8-4dfe-b8c2-b4459c9d32e5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", + "x-ms-request-id" : "8a8f3618-c214-4bac-8682-4df17918cc0d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "61a7a854-3978-4c4f-824b-88b752655ef4" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "72a84853-24c2-42fd-a947-f602f80683d9" }, "Response" : { "content-length" : "528", @@ -1839,27 +1813,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", + "x-ms-ratelimit-remaining-subscription-reads" : "11954", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0a6acecc-296b-40f4-bebd-db9ef539223c", - "Date" : "Mon, 23 Aug 2021 03:50:07 GMT", + "x-ms-correlation-request-id" : "14060a21-6325-45ac-b0d8-34b1b114f325", + "Date" : "Sun, 06 Mar 2022 06:48:06 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "61a7a854-3978-4c4f-824b-88b752655ef4", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035007Z:0a6acecc-296b-40f4-bebd-db9ef539223c", + "client-request-id" : "72a84853-24c2-42fd-a947-f602f80683d9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064807Z:14060a21-6325-45ac-b0d8-34b1b114f325", "Expires" : "-1", - "x-ms-request-id" : "b94392e9-886e-4f7e-91d2-16f8e9674339", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", + "x-ms-request-id" : "f455a306-6567-493f-9f62-03d319d802e4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d02cbaf-f57f-4497-b676-2a2ca67170ef" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b6f09da5-dba8-47ab-8f00-a58c37598256" }, "Response" : { "content-length" : "528", @@ -1869,25 +1843,25 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "200", - "x-ms-correlation-request-id" : "720829a4-4ce8-400e-9cf0-f58567a9c3bd", - "Date" : "Mon, 23 Aug 2021 03:50:38 GMT", + "x-ms-correlation-request-id" : "f0f77e2a-11c0-422c-a2bc-04bbd91ef74c", + "Date" : "Sun, 06 Mar 2022 06:48:37 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8d02cbaf-f57f-4497-b676-2a2ca67170ef", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035038Z:720829a4-4ce8-400e-9cf0-f58567a9c3bd", + "client-request-id" : "b6f09da5-dba8-47ab-8f00-a58c37598256", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064838Z:f0f77e2a-11c0-422c-a2bc-04bbd91ef74c", "Expires" : "-1", - "x-ms-request-id" : "d4e94410-f96e-43df-921e-94ba93761c31", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", + "x-ms-request-id" : "88312f1c-71e4-441c-b4a0-26c4dcc3be6f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c69097de-371b-4634-8684-c7a1e508f17a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8d4eb96c-1716-4704-a6a3-b16b333a7191" }, "Response" : { "content-length" : "528", @@ -1895,83 +1869,83 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", + "x-ms-ratelimit-remaining-subscription-reads" : "11953", "StatusCode" : "200", - "x-ms-correlation-request-id" : "3caa3044-fe8e-46ba-8357-19f3f23895d8", - "Date" : "Mon, 23 Aug 2021 03:51:09 GMT", + "x-ms-correlation-request-id" : "8a8fe516-6437-4f06-8c33-4865e043bb12", + "Date" : "Sun, 06 Mar 2022 06:49:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c69097de-371b-4634-8684-c7a1e508f17a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035110Z:3caa3044-fe8e-46ba-8357-19f3f23895d8", + "client-request-id" : "8d4eb96c-1716-4704-a6a3-b16b333a7191", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064909Z:8a8fe516-6437-4f06-8c33-4865e043bb12", "Expires" : "-1", - "x-ms-request-id" : "32a362ee-3328-4679-8a1f-26a87aca0679", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", + "x-ms-request-id" : "8367a03b-6c6a-4cf6-ad26-c49a45dc46a1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec5168d4-e0b3-4acf-aca9-fb9b643aa56b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7f8328fa-e9fa-4e29-831c-b4b50c6eb46c" }, "Response" : { - "content-length" : "527", + "content-length" : "528", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "200", - "x-ms-correlation-request-id" : "261f7b51-ea8f-4778-915d-d460402f04c6", - "Date" : "Mon, 23 Aug 2021 03:51:41 GMT", + "x-ms-correlation-request-id" : "d43d6f83-d669-44e9-bc11-1e3a48b55c50", + "Date" : "Sun, 06 Mar 2022 06:49:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ec5168d4-e0b3-4acf-aca9-fb9b643aa56b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035142Z:261f7b51-ea8f-4778-915d-d460402f04c6", + "client-request-id" : "7f8328fa-e9fa-4e29-831c-b4b50c6eb46c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064940Z:d43d6f83-d669-44e9-bc11-1e3a48b55c50", "Expires" : "-1", - "x-ms-request-id" : "6437c29b-f362-483c-b1d1-be8c6ea0e0e9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Syncing\"}}", + "x-ms-request-id" : "78e54a28-f7ea-407d-a0fc-57c3201eaa4e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "415475e4-b748-45a9-b5d7-4aa0efadafed" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0e1d47f7-4f79-476a-a8c2-13b3fe3e486e" }, "Response" : { - "content-length" : "527", + "content-length" : "528", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", + "x-ms-ratelimit-remaining-subscription-reads" : "11952", "StatusCode" : "200", - "x-ms-correlation-request-id" : "181b92e8-b3e9-4735-9311-c2b89b4049e2", - "Date" : "Mon, 23 Aug 2021 03:52:12 GMT", + "x-ms-correlation-request-id" : "eb9c5fcd-8743-4e1c-9f06-5e40761de788", + "Date" : "Sun, 06 Mar 2022 06:50:11 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "415475e4-b748-45a9-b5d7-4aa0efadafed", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035213Z:181b92e8-b3e9-4735-9311-c2b89b4049e2", + "client-request-id" : "0e1d47f7-4f79-476a-a8c2-13b3fe3e486e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065011Z:eb9c5fcd-8743-4e1c-9f06-5e40761de788", "Expires" : "-1", - "x-ms-request-id" : "14620cc4-b035-4474-83f9-3d2012dac2ec", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Syncing\"}}", + "x-ms-request-id" : "6394fecb-329b-4050-8191-71406de8d602", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Creating\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "49a9908d-ce70-4921-ba11-f1be57ddd883" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "299be55e-ca12-4052-974d-c65fe208a6e4" }, "Response" : { "content-length" : "527", @@ -1979,27 +1953,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", + "x-ms-ratelimit-remaining-subscription-reads" : "11951", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c187888e-c2af-45fc-a956-3a2727431887", - "Date" : "Mon, 23 Aug 2021 03:52:44 GMT", + "x-ms-correlation-request-id" : "993e1ee2-0a12-4c77-aebf-4517a8404e24", + "Date" : "Sun, 06 Mar 2022 06:50:42 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "49a9908d-ce70-4921-ba11-f1be57ddd883", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035244Z:c187888e-c2af-45fc-a956-3a2727431887", + "client-request-id" : "299be55e-ca12-4052-974d-c65fe208a6e4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065042Z:993e1ee2-0a12-4c77-aebf-4517a8404e24", "Expires" : "-1", - "x-ms-request-id" : "093da3b2-76bc-4b78-96c2-2c6b455fc652", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Syncing\"}}", + "x-ms-request-id" : "2dc4b57a-1d8c-49cf-9b05-1606fb9600b1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Syncing\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09e16b40-35c1-4e41-be31-3075f5381e28" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5407b20c-9277-4fe0-8e4d-cf2395c0f34d" }, "Response" : { "content-length" : "527", @@ -2007,83 +1981,85 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", + "x-ms-ratelimit-remaining-subscription-reads" : "11948", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2eb9f4f4-f528-46e2-a0a1-e21eea2b536c", - "Date" : "Mon, 23 Aug 2021 03:53:15 GMT", + "x-ms-correlation-request-id" : "58a23207-25bd-4b91-9378-3f118622086b", + "Date" : "Sun, 06 Mar 2022 06:51:14 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "09e16b40-35c1-4e41-be31-3075f5381e28", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035315Z:2eb9f4f4-f528-46e2-a0a1-e21eea2b536c", + "client-request-id" : "5407b20c-9277-4fe0-8e4d-cf2395c0f34d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065114Z:58a23207-25bd-4b91-9378-3f118622086b", "Expires" : "-1", - "x-ms-request-id" : "2a32c060-194e-426e-8537-36088b725aa8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Syncing\"}}", + "x-ms-request-id" : "cbd54650-8b0d-4e79-95d9-9efcd395470b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Syncing\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ec3b65a-3e88-4df8-8171-470b335df193" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "647832bd-511c-4b05-be73-a2b1aebae272" }, "Response" : { - "content-length" : "527", + "content-length" : "529", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", + "x-ms-ratelimit-remaining-subscription-reads" : "11948", "StatusCode" : "200", - "x-ms-correlation-request-id" : "008fd901-1137-4f08-b969-c30303a255fd", - "Date" : "Mon, 23 Aug 2021 03:53:46 GMT", + "x-ms-correlation-request-id" : "5da3f2ec-ea3b-49b9-b71f-f73b25432da3", + "Date" : "Sun, 06 Mar 2022 06:51:45 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "9ec3b65a-3e88-4df8-8171-470b335df193", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035346Z:008fd901-1137-4f08-b969-c30303a255fd", + "client-request-id" : "647832bd-511c-4b05-be73-a2b1aebae272", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065145Z:5da3f2ec-ea3b-49b9-b71f-f73b25432da3", "Expires" : "-1", - "x-ms-request-id" : "c42763ed-adfd-4306-a820-ac8bb8dfc706", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Syncing\"}}", + "x-ms-request-id" : "1eb3a50a-84de-477e-8f71-64dc7a77ea6a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Succeeded\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "24a5f466-7ca4-48ad-93bd-d7103e95afbb" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "698d2ef1-3808-493c-84fb-ff7372b83a99", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "527", + "content-length" : "541", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", + "x-ms-ratelimit-remaining-subscription-reads" : "11954", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed9c9513-fba6-4931-8e41-e7f804980231", - "Date" : "Mon, 23 Aug 2021 03:54:17 GMT", + "x-ms-correlation-request-id" : "14836374-a19f-4c3f-a145-66bfda53be87", + "Date" : "Sun, 06 Mar 2022 06:51:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "24a5f466-7ca4-48ad-93bd-d7103e95afbb", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035417Z:ed9c9513-fba6-4931-8e41-e7f804980231", + "client-request-id" : "698d2ef1-3808-493c-84fb-ff7372b83a99", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065146Z:14836374-a19f-4c3f-a145-66bfda53be87", "Expires" : "-1", - "x-ms-request-id" : "a735045a-65f1-42d8-996d-7484e2270d14", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Syncing\"}}", + "x-ms-request-id" : "262744f7-1612-46fc-9ef8-8a9c9f1ece11", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Succeeded\"}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf0f5bbd-c721-476c-9ccb-32ca5266da58" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7c9e5751-32c6-4791-b125-59cdde4b396d", + "Content-Type" : "application/json" }, "Response" : { "content-length" : "529", @@ -2091,2777 +2067,3473 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", + "x-ms-ratelimit-remaining-subscription-reads" : "11952", "StatusCode" : "200", - "x-ms-correlation-request-id" : "15d8c218-d7ab-448a-8717-0d7d2fa1ae9c", - "Date" : "Mon, 23 Aug 2021 03:54:48 GMT", + "x-ms-correlation-request-id" : "ac470def-2f66-4614-82e7-b815c6a87b68", + "Date" : "Sun, 06 Mar 2022 06:51:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cf0f5bbd-c721-476c-9ccb-32ca5266da58", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035449Z:15d8c218-d7ab-448a-8717-0d7d2fa1ae9c", + "client-request-id" : "7c9e5751-32c6-4791-b125-59cdde4b396d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065147Z:ac470def-2f66-4614-82e7-b815c6a87b68", "Expires" : "-1", - "x-ms-request-id" : "1045ddac-023f-475d-afac-2201c9bcaddb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "7138bffc-d654-42ad-9baf-bbaf5d4aa79d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Succeeded\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "079f8d66-abc9-443a-a2f5-2487023ef30c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e80cf64a-2038-434b-b51a-82353d5be2e8", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "541", + "content-length" : "529", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "x-ms-ratelimit-remaining-subscription-reads" : "11949", "StatusCode" : "200", - "x-ms-correlation-request-id" : "4349a20a-b3b9-4a2a-8458-cb9df7c48f63", - "Date" : "Mon, 23 Aug 2021 03:54:49 GMT", + "x-ms-correlation-request-id" : "ae0bfb5b-e9e9-4c5b-9931-5d0f75876496", + "Date" : "Sun, 06 Mar 2022 06:51:48 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "079f8d66-abc9-443a-a2f5-2487023ef30c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035450Z:4349a20a-b3b9-4a2a-8458-cb9df7c48f63", + "client-request-id" : "e80cf64a-2038-434b-b51a-82353d5be2e8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065149Z:ae0bfb5b-e9e9-4c5b-9931-5d0f75876496", "Expires" : "-1", - "x-ms-request-id" : "3c629901-5b37-4920-b289-a71468e67d83", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Succeeded\"}}]}", + "x-ms-request-id" : "05d332e9-dc55-43eb-a6b9-82e7e17b3781", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Succeeded\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0193034b-e4c5-4dc1-ba26-1fad6859e7ac", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ab031c6e-0f77-4a12-b304-ce456f45408a", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "529", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "Server" : "Microsoft-HTTPAPI/2.0", "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" : "5fcbf25a-126f-4751-9056-bc51fd69005b", - "Date" : "Mon, 23 Aug 2021 03:54:49 GMT", + "StatusCode" : "204", + "x-ms-correlation-request-id" : "2f9b949b-9ae2-4ad2-a0a7-93e177aa9bbf", + "Date" : "Sun, 06 Mar 2022 06:51:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "0193034b-e4c5-4dc1-ba26-1fad6859e7ac", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035450Z:5fcbf25a-126f-4751-9056-bc51fd69005b", + "client-request-id" : "ab031c6e-0f77-4a12-b304-ce456f45408a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065151Z:2f9b949b-9ae2-4ad2-a0a7-93e177aa9bbf", "Expires" : "-1", - "x-ms-request-id" : "d1a5dfca-2b9c-4679-a03f-5b244302d7d0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Succeeded\"}}", - "Content-Type" : "application/json; charset=utf-8" + "x-ms-request-id" : "0a90a7b5-3acb-44fc-a822-81bcd05b9aa1" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea82d231-102f-4243-9b84-8d8296220aaf", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "681732bc-0760-4db3-b698-de2b59f45f46", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "529", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", + "x-ms-ratelimit-remaining-subscription-reads" : "11953", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e1168fa7-2b33-4581-b19d-1fdcb880377b", - "Date" : "Mon, 23 Aug 2021 03:54:50 GMT", + "x-ms-correlation-request-id" : "a94cdab9-02a5-4879-8a0c-f337219b3006", + "Date" : "Sun, 06 Mar 2022 06:52:22 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ea82d231-102f-4243-9b84-8d8296220aaf", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035450Z:e1168fa7-2b33-4581-b19d-1fdcb880377b", + "client-request-id" : "681732bc-0760-4db3-b698-de2b59f45f46", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065222Z:a94cdab9-02a5-4879-8a0c-f337219b3006", "Expires" : "-1", - "x-ms-request-id" : "0c41119c-c0ac-4ac0-b21a-4fd087656cee", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"linkedRedisCacheLocation\":\"East US\",\"serverRole\":\"Primary\",\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "6754ac0b-8b94-4a5c-acb1-9e5e1ab79221", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c64da75f-1dea-4c61-83b3-233fd3b6955a", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4aa245e4-bd34-431c-8b75-44cb58eb0278", "Content-Type" : "application/json" }, "Response" : { - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "content-length" : "1018", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "204", - "x-ms-correlation-request-id" : "99f346c7-d9b5-4308-ac53-bcffac7781a2", - "Date" : "Mon, 23 Aug 2021 03:54:50 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11951", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "5ccaf02d-15ce-485d-b411-ed32c4344fb3", + "Date" : "Sun, 06 Mar 2022 06:52:22 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c64da75f-1dea-4c61-83b3-233fd3b6955a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035451Z:99f346c7-d9b5-4308-ac53-bcffac7781a2", + "client-request-id" : "4aa245e4-bd34-431c-8b75-44cb58eb0278", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065222Z:5ccaf02d-15ce-485d-b411-ed32c4344fb3", "Expires" : "-1", - "x-ms-request-id" : "430fdb75-ce71-4bf1-af12-dbde91cd951e" + "x-ms-request-id" : "3889a9a2-972f-4bcb-8b4a-330241e4d34e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Unlinking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/linkedServers/javacsmrc16532Second\"}]}}", + "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f33a46c1-05a2-4c1a-844b-312f9f8589ad", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "654af928-88b2-48aa-8f15-94a93f44b182", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", + "x-ms-ratelimit-remaining-subscription-reads" : "11946", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e2151c4a-e498-4051-80aa-16a67965cb49", - "Date" : "Mon, 23 Aug 2021 03:55:21 GMT", + "x-ms-correlation-request-id" : "a047e658-1416-4c5c-828a-e3cf8b4e928a", + "Date" : "Sun, 06 Mar 2022 06:52:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f33a46c1-05a2-4c1a-844b-312f9f8589ad", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035522Z:e2151c4a-e498-4051-80aa-16a67965cb49", + "client-request-id" : "654af928-88b2-48aa-8f15-94a93f44b182", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065254Z:a047e658-1416-4c5c-828a-e3cf8b4e928a", "Expires" : "-1", - "x-ms-request-id" : "2096946e-66c2-4c93-921c-a04554c0c2ed", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "2905684a-9de6-43e0-8581-f8000ce8c202", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd016be0-20dd-4127-b086-64193a8f1f7a", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "66ec0454-1c5f-4872-bcd2-1d1ccd1aaa50", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "1015", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", + "x-ms-ratelimit-remaining-subscription-reads" : "11949", "StatusCode" : "200", - "x-ms-correlation-request-id" : "97eb8019-12c8-43e2-95e8-29a7e583f7ee", - "Date" : "Mon, 23 Aug 2021 03:55:23 GMT", + "x-ms-correlation-request-id" : "3bfd22cf-0fa6-49fc-8f4d-0a4e576a9453", + "Date" : "Sun, 06 Mar 2022 06:52:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cd016be0-20dd-4127-b086-64193a8f1f7a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035523Z:97eb8019-12c8-43e2-95e8-29a7e583f7ee", + "client-request-id" : "66ec0454-1c5f-4872-bcd2-1d1ccd1aaa50", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065255Z:3bfd22cf-0fa6-49fc-8f4d-0a4e576a9453", "Expires" : "-1", - "x-ms-request-id" : "849f18f1-ff46-4e5a-9aa4-9375dd8674a4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Unlinking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/linkedServers/javacsmrc72809Second\"}]}}", + "x-ms-request-id" : "b3779129-0110-4365-b8ab-90f17154377f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "397a580d-6aa8-4eec-a7ca-ebd3973ac550", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "264a8975-be8a-4c2a-b443-1af9c10728bb", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "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" : "fd30e6df-85ae-4090-90c2-de48b85244b9", - "Date" : "Mon, 23 Aug 2021 03:55:54 GMT", + "x-ms-correlation-request-id" : "e8715856-e311-4fdc-a4fe-4cdc15354f4c", + "Date" : "Sun, 06 Mar 2022 06:53:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "397a580d-6aa8-4eec-a7ca-ebd3973ac550", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035555Z:fd30e6df-85ae-4090-90c2-de48b85244b9", + "client-request-id" : "264a8975-be8a-4c2a-b443-1af9c10728bb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065326Z:e8715856-e311-4fdc-a4fe-4cdc15354f4c", "Expires" : "-1", - "x-ms-request-id" : "d5426b07-b636-4dfe-81bd-9a9e84d1d3f7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "d63f40aa-5510-4f2a-8fa8-a89f4525b56e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8718125-e247-496c-9720-14aebb86e7da", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "515ad5bc-6c85-42ce-bbd8-f95dec608c8c", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", + "x-ms-ratelimit-remaining-subscription-reads" : "11950", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8f9593e4-b23d-4f7b-9d13-fba6febfe27c", - "Date" : "Mon, 23 Aug 2021 03:55:55 GMT", + "x-ms-correlation-request-id" : "c39e3eda-4119-4ebe-9d4d-2d5569f377eb", + "Date" : "Sun, 06 Mar 2022 06:53:26 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "b8718125-e247-496c-9720-14aebb86e7da", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035556Z:8f9593e4-b23d-4f7b-9d13-fba6febfe27c", + "client-request-id" : "515ad5bc-6c85-42ce-bbd8-f95dec608c8c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065327Z:c39e3eda-4119-4ebe-9d4d-2d5569f377eb", "Expires" : "-1", - "x-ms-request-id" : "0f8340cc-f32d-4fb9-a39c-23268c492575", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "8a36b77a-66c9-42a7-8720-52ddd8394b8f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "52a8dfeb-209f-438b-afc5-1de787be87cb", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "96ffe013-4dcd-4122-b7db-0d8d1f625830", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "x-ms-ratelimit-remaining-subscription-reads" : "11945", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0cc9bbab-054c-4398-9380-1f7fe06eff0a", - "Date" : "Mon, 23 Aug 2021 03:56:27 GMT", + "x-ms-correlation-request-id" : "f3ffd7db-9fa5-4261-ace7-a8df447270ef", + "Date" : "Sun, 06 Mar 2022 06:53:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "52a8dfeb-209f-438b-afc5-1de787be87cb", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035627Z:0cc9bbab-054c-4398-9380-1f7fe06eff0a", + "client-request-id" : "96ffe013-4dcd-4122-b7db-0d8d1f625830", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065358Z:f3ffd7db-9fa5-4261-ace7-a8df447270ef", "Expires" : "-1", - "x-ms-request-id" : "6d74d1a3-f72d-4373-bcee-d5851e6ef9b2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "aee9a6cd-9914-4562-94dc-b40a769cfb6d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "38641dd0-c4c1-49b3-96f3-b074c03df31d", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1aad304f-6e11-464a-8def-99ba59f345b9", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", + "x-ms-ratelimit-remaining-subscription-reads" : "11948", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2924c4d1-9700-49f8-a918-de4e03531a77", - "Date" : "Mon, 23 Aug 2021 03:56:28 GMT", + "x-ms-correlation-request-id" : "04263447-0397-4718-896a-a8d2f86d4895", + "Date" : "Sun, 06 Mar 2022 06:53:59 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "38641dd0-c4c1-49b3-96f3-b074c03df31d", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035629Z:2924c4d1-9700-49f8-a918-de4e03531a77", + "client-request-id" : "1aad304f-6e11-464a-8def-99ba59f345b9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065400Z:04263447-0397-4718-896a-a8d2f86d4895", "Expires" : "-1", - "x-ms-request-id" : "1e8d2e3c-f74d-4c34-ab6f-3d1677d8ce6f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "ec14693d-3a22-4f59-b9a7-b81485c064a7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f4644d3-2fc0-4122-b357-f8234cff15c2", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "96cc48ca-39a2-4c5c-ab8b-2836682e4379", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", + "x-ms-ratelimit-remaining-subscription-reads" : "11951", "StatusCode" : "200", - "x-ms-correlation-request-id" : "b5d27e96-3d67-423c-a3ee-8b6e4001e197", - "Date" : "Mon, 23 Aug 2021 03:56:59 GMT", + "x-ms-correlation-request-id" : "a277e3ca-dc93-4db8-9ac7-e7882fd116ce", + "Date" : "Sun, 06 Mar 2022 06:54:31 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "0f4644d3-2fc0-4122-b357-f8234cff15c2", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035700Z:b5d27e96-3d67-423c-a3ee-8b6e4001e197", + "client-request-id" : "96cc48ca-39a2-4c5c-ab8b-2836682e4379", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065431Z:a277e3ca-dc93-4db8-9ac7-e7882fd116ce", "Expires" : "-1", - "x-ms-request-id" : "b163b70e-f1a8-42f6-8205-acd8e667de6c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "6d6a3624-39b6-49d2-b988-caebc276c0a5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f35d3418-5c09-41a1-bfcd-d7ca4a2922a5", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "096b7505-f191-42cd-8ece-1443541585f7", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", + "x-ms-ratelimit-remaining-subscription-reads" : "11949", "StatusCode" : "200", - "x-ms-correlation-request-id" : "77948bff-3b3a-4aec-8752-db2735d82073", - "Date" : "Mon, 23 Aug 2021 03:57:01 GMT", + "x-ms-correlation-request-id" : "2dae9fe4-617e-4692-9574-c62b8563ea5e", + "Date" : "Sun, 06 Mar 2022 06:54:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f35d3418-5c09-41a1-bfcd-d7ca4a2922a5", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035702Z:77948bff-3b3a-4aec-8752-db2735d82073", + "client-request-id" : "096b7505-f191-42cd-8ece-1443541585f7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065432Z:2dae9fe4-617e-4692-9574-c62b8563ea5e", "Expires" : "-1", - "x-ms-request-id" : "4a18353b-9882-47b2-9ea6-887df6aab403", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "4de232ee-f8f9-46d6-9108-c4dfdfea5e59", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ccce1331-b12f-4b27-9950-704aa21c0c86", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4df1bf33-f673-4b55-b066-1aaddf13b8ed", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", + "x-ms-ratelimit-remaining-subscription-reads" : "11944", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a07e8ec-aa92-46ab-996a-4110c3322d3c", - "Date" : "Mon, 23 Aug 2021 03:57:34 GMT", + "x-ms-correlation-request-id" : "37dc92d9-b627-4bd8-a2d8-359c87a5f43f", + "Date" : "Sun, 06 Mar 2022 06:55:03 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ccce1331-b12f-4b27-9950-704aa21c0c86", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035734Z:8a07e8ec-aa92-46ab-996a-4110c3322d3c", + "client-request-id" : "4df1bf33-f673-4b55-b066-1aaddf13b8ed", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065503Z:37dc92d9-b627-4bd8-a2d8-359c87a5f43f", "Expires" : "-1", - "x-ms-request-id" : "65073641-d276-4434-8d7d-969044a892cc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "4efd48b2-56de-4fb9-b317-358946b729a5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "acea348a-1b06-4491-a7b5-aa1b86233357", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9998db0a-4fe4-4ee1-a9cf-78f63e5e1096", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "x-ms-ratelimit-remaining-subscription-reads" : "11947", "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b42b7b5-7932-4b81-95b8-759f10e989fc", - "Date" : "Mon, 23 Aug 2021 03:57:37 GMT", + "x-ms-correlation-request-id" : "00a35d49-d8db-4be4-899e-95fd0ad30e86", + "Date" : "Sun, 06 Mar 2022 06:55:04 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "acea348a-1b06-4491-a7b5-aa1b86233357", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035737Z:9b42b7b5-7932-4b81-95b8-759f10e989fc", + "client-request-id" : "9998db0a-4fe4-4ee1-a9cf-78f63e5e1096", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065504Z:00a35d49-d8db-4be4-899e-95fd0ad30e86", "Expires" : "-1", - "x-ms-request-id" : "5e43313c-8127-463a-b7df-7f6abf266e9a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "759cea2d-8e5c-42fa-943d-4b0b80960ca3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b87866d-4a48-4d20-8fef-6c40ca68cf1b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "90571132-41a1-404f-8f25-8ac2f89e8dae", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", + "x-ms-ratelimit-remaining-subscription-reads" : "11945", "StatusCode" : "200", - "x-ms-correlation-request-id" : "651c0375-f3d6-4405-8078-6518583002a7", - "Date" : "Mon, 23 Aug 2021 03:58:08 GMT", + "x-ms-correlation-request-id" : "46281063-0f0d-4069-ad57-06c444b170c6", + "Date" : "Sun, 06 Mar 2022 06:55:35 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "2b87866d-4a48-4d20-8fef-6c40ca68cf1b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035808Z:651c0375-f3d6-4405-8078-6518583002a7", + "client-request-id" : "90571132-41a1-404f-8f25-8ac2f89e8dae", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065536Z:46281063-0f0d-4069-ad57-06c444b170c6", "Expires" : "-1", - "x-ms-request-id" : "0d7f8380-2651-44b6-86ef-36809a666270", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "524228b8-2e14-4705-afed-cd327b949d02", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a680321a-ed48-4755-b065-207ad2468c38", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4b84bded-206a-4379-a5f1-56fc2cd2e59d", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", + "x-ms-ratelimit-remaining-subscription-reads" : "11943", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d9973e40-4472-4101-bedf-d2e8c547e92a", - "Date" : "Mon, 23 Aug 2021 03:58:09 GMT", + "x-ms-correlation-request-id" : "42a1ae66-adf1-47ed-a161-9c4d8baf21cc", + "Date" : "Sun, 06 Mar 2022 06:55:36 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a680321a-ed48-4755-b065-207ad2468c38", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035809Z:d9973e40-4472-4101-bedf-d2e8c547e92a", + "client-request-id" : "4b84bded-206a-4379-a5f1-56fc2cd2e59d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065537Z:42a1ae66-adf1-47ed-a161-9c4d8baf21cc", "Expires" : "-1", - "x-ms-request-id" : "dc1702f4-b5c0-47b3-ae18-2500b40af34d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "f2be4bfd-bf71-4e25-9adb-5fe6d3eeb04c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "598ff462-15ac-4a0d-bcf5-84d9175a065c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "231ae2a6-c7e2-4c78-a752-75fbf8d7ee8a", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", + "x-ms-ratelimit-remaining-subscription-reads" : "11946", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e59190bd-5954-401c-b49b-b3041cf3839d", - "Date" : "Mon, 23 Aug 2021 03:58:40 GMT", + "x-ms-correlation-request-id" : "69f35301-df6e-4e0e-b4e0-347e193352d4", + "Date" : "Sun, 06 Mar 2022 06:56:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "598ff462-15ac-4a0d-bcf5-84d9175a065c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035840Z:e59190bd-5954-401c-b49b-b3041cf3839d", + "client-request-id" : "231ae2a6-c7e2-4c78-a752-75fbf8d7ee8a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065608Z:69f35301-df6e-4e0e-b4e0-347e193352d4", "Expires" : "-1", - "x-ms-request-id" : "02139757-3f74-4e62-a7ed-98a7b1e50cdb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "b78c9e8b-cb27-4669-97e7-4a8774b41d73", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "73292dcf-ea82-4970-9abb-763f1ad6fa9e", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "fa590a0c-8202-4d85-9ffe-7282d9c9dce2", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", + "x-ms-ratelimit-remaining-subscription-reads" : "11943", "StatusCode" : "200", - "x-ms-correlation-request-id" : "31d652fb-e2b7-4e48-a0f7-200b7d9563cc", - "Date" : "Mon, 23 Aug 2021 03:58:41 GMT", + "x-ms-correlation-request-id" : "c03ba2f1-d49d-4ba0-b62c-b3affffecb5c", + "Date" : "Sun, 06 Mar 2022 06:56:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "73292dcf-ea82-4970-9abb-763f1ad6fa9e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035842Z:31d652fb-e2b7-4e48-a0f7-200b7d9563cc", + "client-request-id" : "fa590a0c-8202-4d85-9ffe-7282d9c9dce2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065610Z:c03ba2f1-d49d-4ba0-b62c-b3affffecb5c", "Expires" : "-1", - "x-ms-request-id" : "cf430ebb-7710-4563-ad01-a7facd54dd45", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "67044188-87e1-4024-ba6b-7d7e4198b5c4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9fd31f3-f8ba-49db-8e9c-c399e14dfb2b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f0578074-1bab-46c1-a021-b61193844f5b", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", + "x-ms-ratelimit-remaining-subscription-reads" : "11950", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ad8784f7-3bfa-453e-8fb4-7580f77ba47c", - "Date" : "Mon, 23 Aug 2021 03:59:13 GMT", + "x-ms-correlation-request-id" : "bcf6668b-ab8e-41e9-a194-4ba8a7c7f911", + "Date" : "Sun, 06 Mar 2022 06:56:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d9fd31f3-f8ba-49db-8e9c-c399e14dfb2b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035913Z:ad8784f7-3bfa-453e-8fb4-7580f77ba47c", + "client-request-id" : "f0578074-1bab-46c1-a021-b61193844f5b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065641Z:bcf6668b-ab8e-41e9-a194-4ba8a7c7f911", "Expires" : "-1", - "x-ms-request-id" : "5241265a-dbb7-4330-87ff-d0b2bf1cb093", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "35e91896-ba8c-44f6-be99-b48bbcba48f0", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "501891cc-73ca-4943-9046-c53f0c6adaf7", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "dd2a83f8-236a-4b40-a614-abc41223fa01", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", + "x-ms-ratelimit-remaining-subscription-reads" : "11948", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d704de4f-d9e2-456d-a3be-4d20cad66dd3", - "Date" : "Mon, 23 Aug 2021 03:59:14 GMT", + "x-ms-correlation-request-id" : "29ef678e-35b0-405c-b1b0-035f91046107", + "Date" : "Sun, 06 Mar 2022 06:56:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "501891cc-73ca-4943-9046-c53f0c6adaf7", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035914Z:d704de4f-d9e2-456d-a3be-4d20cad66dd3", + "client-request-id" : "dd2a83f8-236a-4b40-a614-abc41223fa01", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065642Z:29ef678e-35b0-405c-b1b0-035f91046107", "Expires" : "-1", - "x-ms-request-id" : "e7e01ba5-8be4-490a-994c-3675a744d9b2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "59952c20-7e46-4a58-b117-ce6cb14e54b4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc7358c0-ab69-49b9-a459-e6d097224ffa", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "59446979-d4c8-4553-ba63-7cfa357a20c3", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", + "x-ms-ratelimit-remaining-subscription-reads" : "11944", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c3f1be52-3f76-4f87-adc8-fc9f5795e82c", - "Date" : "Mon, 23 Aug 2021 03:59:44 GMT", + "x-ms-correlation-request-id" : "1c29008e-5337-41a5-8d5c-1136448613a5", + "Date" : "Sun, 06 Mar 2022 06:57:13 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "fc7358c0-ab69-49b9-a459-e6d097224ffa", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035945Z:c3f1be52-3f76-4f87-adc8-fc9f5795e82c", + "client-request-id" : "59446979-d4c8-4553-ba63-7cfa357a20c3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065713Z:1c29008e-5337-41a5-8d5c-1136448613a5", "Expires" : "-1", - "x-ms-request-id" : "e2fc52a0-0b88-4156-bd7d-5c102b60805a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "b77f0611-9bc3-4293-8c39-3f50425bbb30", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "370ccc66-468e-4863-b4ee-e5c938e0ea1c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "64c15b82-7a7d-40d9-b472-7db87a452d92", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", + "x-ms-ratelimit-remaining-subscription-reads" : "11942", "StatusCode" : "200", - "x-ms-correlation-request-id" : "79f45b54-d207-47fa-822c-0760df7692a1", - "Date" : "Mon, 23 Aug 2021 03:59:46 GMT", + "x-ms-correlation-request-id" : "2f23ae4c-c2ae-41f4-a856-75fbc018cc8a", + "Date" : "Sun, 06 Mar 2022 06:57:14 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "370ccc66-468e-4863-b4ee-e5c938e0ea1c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T035947Z:79f45b54-d207-47fa-822c-0760df7692a1", + "client-request-id" : "64c15b82-7a7d-40d9-b472-7db87a452d92", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065714Z:2f23ae4c-c2ae-41f4-a856-75fbc018cc8a", "Expires" : "-1", - "x-ms-request-id" : "b6000e76-0755-4800-831a-a014595444ff", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "97a52fdb-0610-4713-9f95-8dae1d8fcf0d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "43397627-64a5-4bf1-a96a-005f2b101f68", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9f92e7ea-9571-4cbd-8093-3e48970a022f", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", + "x-ms-ratelimit-remaining-subscription-reads" : "11945", "StatusCode" : "200", - "x-ms-correlation-request-id" : "77a04236-fe85-4983-ac71-3e1187f77dab", - "Date" : "Mon, 23 Aug 2021 04:00:17 GMT", + "x-ms-correlation-request-id" : "ea1d5077-d25e-4d76-92a0-ac74e7943b97", + "Date" : "Sun, 06 Mar 2022 06:57:45 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "43397627-64a5-4bf1-a96a-005f2b101f68", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040018Z:77a04236-fe85-4983-ac71-3e1187f77dab", + "client-request-id" : "9f92e7ea-9571-4cbd-8093-3e48970a022f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065745Z:ea1d5077-d25e-4d76-92a0-ac74e7943b97", "Expires" : "-1", - "x-ms-request-id" : "ab123a77-241d-40cc-a991-ab125da2077d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "618cff3d-1467-411c-96a2-e9f8a17aa1ec", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3c6749af-d902-46bb-b328-eb0840c3c74f", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f6ffc5e2-2563-4550-8270-00300c772807", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", + "x-ms-ratelimit-remaining-subscription-reads" : "11942", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f7b2d793-97f7-42d4-84a4-8cbf3c1afe0d", - "Date" : "Mon, 23 Aug 2021 04:00:19 GMT", + "x-ms-correlation-request-id" : "e37997b2-b082-46c0-8856-c6d9c39a9d56", + "Date" : "Sun, 06 Mar 2022 06:57:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "3c6749af-d902-46bb-b328-eb0840c3c74f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040019Z:f7b2d793-97f7-42d4-84a4-8cbf3c1afe0d", + "client-request-id" : "f6ffc5e2-2563-4550-8270-00300c772807", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065746Z:e37997b2-b082-46c0-8856-c6d9c39a9d56", "Expires" : "-1", - "x-ms-request-id" : "8e0fc4a4-fc2e-4596-bb70-e4898cec9935", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "af817be0-f1ad-4312-9172-c6a231c9210a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1fe3e1e0-d200-4689-8bd3-469a8ecf992b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "83585bc9-20df-4e42-a761-93955dadd462", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", + "x-ms-ratelimit-remaining-subscription-reads" : "11949", "StatusCode" : "200", - "x-ms-correlation-request-id" : "865a290b-4b49-4369-95c7-f0c24742996b", - "Date" : "Mon, 23 Aug 2021 04:00:50 GMT", + "x-ms-correlation-request-id" : "602e584c-d390-4c54-9c1f-9584e4c2629b", + "Date" : "Sun, 06 Mar 2022 06:58:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "1fe3e1e0-d200-4689-8bd3-469a8ecf992b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040051Z:865a290b-4b49-4369-95c7-f0c24742996b", + "client-request-id" : "83585bc9-20df-4e42-a761-93955dadd462", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065818Z:602e584c-d390-4c54-9c1f-9584e4c2629b", "Expires" : "-1", - "x-ms-request-id" : "a8acc35a-c4a5-4a4c-a3ff-e5996aef8fdc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "964484c1-0306-458a-b4f4-4d43f7ac8307", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d130859c-cde9-42e3-a315-a2eb7c722de0", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b76710a6-2acf-4bb5-9f4d-aa2e2cbf988d", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", + "x-ms-ratelimit-remaining-subscription-reads" : "11947", "StatusCode" : "200", - "x-ms-correlation-request-id" : "b642ffb8-d135-4e89-8df2-2fcf4e71c445", - "Date" : "Mon, 23 Aug 2021 04:00:51 GMT", + "x-ms-correlation-request-id" : "62911eb0-44d2-4137-b812-43bce2604491", + "Date" : "Sun, 06 Mar 2022 06:58:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d130859c-cde9-42e3-a315-a2eb7c722de0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040052Z:b642ffb8-d135-4e89-8df2-2fcf4e71c445", + "client-request-id" : "b76710a6-2acf-4bb5-9f4d-aa2e2cbf988d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065819Z:62911eb0-44d2-4137-b812-43bce2604491", "Expires" : "-1", - "x-ms-request-id" : "f8b52266-54fe-4dd5-9cfc-76f74918f0aa", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "fe0c0e59-5ee8-4f61-b594-eeaa4281097a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "21c6dfe5-0c7f-47fd-b92e-d9eb69b10bf0", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "92ecec2a-23a9-40af-b524-8901715a8e78", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", + "x-ms-ratelimit-remaining-subscription-reads" : "11943", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6e7486df-b807-45ff-8e5b-730ce7f9ed4f", - "Date" : "Mon, 23 Aug 2021 04:01:23 GMT", + "x-ms-correlation-request-id" : "f0fe1040-c4d0-435a-80c9-9699ab6535a4", + "Date" : "Sun, 06 Mar 2022 06:58:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "21c6dfe5-0c7f-47fd-b92e-d9eb69b10bf0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040123Z:6e7486df-b807-45ff-8e5b-730ce7f9ed4f", + "client-request-id" : "92ecec2a-23a9-40af-b524-8901715a8e78", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065850Z:f0fe1040-c4d0-435a-80c9-9699ab6535a4", "Expires" : "-1", - "x-ms-request-id" : "498c5861-3302-47b6-b1c1-332bc9ebf042", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "4f5df123-ee09-4c2f-8d4f-cc8365684395", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "917aacac-10e7-4bab-bdfa-6bcccf2893ef", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "415149ab-d972-4d15-b5fe-1fcb0578a7e7", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", + "x-ms-ratelimit-remaining-subscription-reads" : "11941", "StatusCode" : "200", - "x-ms-correlation-request-id" : "b5c6732f-8a27-4729-a8a3-cded9adf11b4", - "Date" : "Mon, 23 Aug 2021 04:01:24 GMT", + "x-ms-correlation-request-id" : "383f090d-452f-49ff-9290-c8780bcbfffa", + "Date" : "Sun, 06 Mar 2022 06:58:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "917aacac-10e7-4bab-bdfa-6bcccf2893ef", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040124Z:b5c6732f-8a27-4729-a8a3-cded9adf11b4", + "client-request-id" : "415149ab-d972-4d15-b5fe-1fcb0578a7e7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065851Z:383f090d-452f-49ff-9290-c8780bcbfffa", "Expires" : "-1", - "x-ms-request-id" : "510fe30d-2e19-495d-bd7f-9f404b41ada5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "46e18f78-ad6b-4b67-b7bc-6ea9f712cbd9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "83c88fab-cdeb-431e-9201-258effef7bc2", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4ff4d4b9-c5b3-418a-9c2c-1e9fa57abd03", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", + "x-ms-ratelimit-remaining-subscription-reads" : "11944", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1b2a2492-8eaa-49f9-80dd-38fce694ff9d", - "Date" : "Mon, 23 Aug 2021 04:01:56 GMT", + "x-ms-correlation-request-id" : "7f3e490f-f6f0-4455-8f85-82bf7d67f0a6", + "Date" : "Sun, 06 Mar 2022 06:59:22 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "83c88fab-cdeb-431e-9201-258effef7bc2", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040156Z:1b2a2492-8eaa-49f9-80dd-38fce694ff9d", + "client-request-id" : "4ff4d4b9-c5b3-418a-9c2c-1e9fa57abd03", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065922Z:7f3e490f-f6f0-4455-8f85-82bf7d67f0a6", "Expires" : "-1", - "x-ms-request-id" : "d0780423-d0a4-4c2f-a302-6e504a526df2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "81bf0679-3918-410e-93d8-aaaa74dc4d3b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e7f71c8-a4e3-4fe1-8c79-b95f841c9f9b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "630abc4e-9036-4f96-8378-2c34b4d751fa", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", + "x-ms-ratelimit-remaining-subscription-reads" : "11941", "StatusCode" : "200", - "x-ms-correlation-request-id" : "47b78a74-30b2-40f8-ad76-975843606527", - "Date" : "Mon, 23 Aug 2021 04:01:56 GMT", + "x-ms-correlation-request-id" : "9fc5e820-f374-40e7-b625-fc4d441ad2ef", + "Date" : "Sun, 06 Mar 2022 06:59:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "6e7f71c8-a4e3-4fe1-8c79-b95f841c9f9b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040157Z:47b78a74-30b2-40f8-ad76-975843606527", + "client-request-id" : "630abc4e-9036-4f96-8378-2c34b4d751fa", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065923Z:9fc5e820-f374-40e7-b625-fc4d441ad2ef", "Expires" : "-1", - "x-ms-request-id" : "1b7e7c77-5747-4e84-8a99-10fb061d9d75", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "aabeffc4-505c-4fe8-822e-9965e5cabb01", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6da3d617-eff1-49cd-b7bb-35c8e542a88b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "88e18392-ce6a-4d26-b8a5-304c29b900ba", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", + "x-ms-ratelimit-remaining-subscription-reads" : "11948", "StatusCode" : "200", - "x-ms-correlation-request-id" : "cae9e136-a23f-4a98-b6ed-dad1a89f1b97", - "Date" : "Mon, 23 Aug 2021 04:02:28 GMT", + "x-ms-correlation-request-id" : "905f3e65-44c5-4e7b-a3f8-1fff085d8d04", + "Date" : "Sun, 06 Mar 2022 06:59:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "6da3d617-eff1-49cd-b7bb-35c8e542a88b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040228Z:cae9e136-a23f-4a98-b6ed-dad1a89f1b97", + "client-request-id" : "88e18392-ce6a-4d26-b8a5-304c29b900ba", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065955Z:905f3e65-44c5-4e7b-a3f8-1fff085d8d04", "Expires" : "-1", - "x-ms-request-id" : "ec38190d-682e-408d-a712-5da5a3fb057c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "a2a91e34-07be-45da-adc4-23afe2bbf940", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "35bee213-4fcc-4728-8e93-1923a13e9455", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "82706f2a-5db8-4bcd-9dc0-2b461076cef5", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", + "x-ms-ratelimit-remaining-subscription-reads" : "11946", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ac6bfb27-55aa-4f27-991c-9aaf75b2301c", - "Date" : "Mon, 23 Aug 2021 04:02:30 GMT", + "x-ms-correlation-request-id" : "8bb90727-8230-4856-820a-36937b089370", + "Date" : "Sun, 06 Mar 2022 06:59:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "35bee213-4fcc-4728-8e93-1923a13e9455", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040230Z:ac6bfb27-55aa-4f27-991c-9aaf75b2301c", + "client-request-id" : "82706f2a-5db8-4bcd-9dc0-2b461076cef5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065956Z:8bb90727-8230-4856-820a-36937b089370", "Expires" : "-1", - "x-ms-request-id" : "d83827cb-53e6-4520-b7a0-5c4f537eac33", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c4fa51cf-ac70-4327-8a39-8c5779bdff2c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bfa64e9f-8e5f-41d6-ba33-a6d409f11b40", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b9f68864-32e9-4b71-a6e6-4ada8ad3f250", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11945", + "x-ms-ratelimit-remaining-subscription-reads" : "11942", "StatusCode" : "200", - "x-ms-correlation-request-id" : "223493f3-a08b-4206-8e82-7dff79d322b0", - "Date" : "Mon, 23 Aug 2021 04:03:01 GMT", + "x-ms-correlation-request-id" : "49660f38-9e34-48a9-8a19-9f2003e05f53", + "Date" : "Sun, 06 Mar 2022 07:00:26 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "bfa64e9f-8e5f-41d6-ba33-a6d409f11b40", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040301Z:223493f3-a08b-4206-8e82-7dff79d322b0", + "client-request-id" : "b9f68864-32e9-4b71-a6e6-4ada8ad3f250", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070027Z:49660f38-9e34-48a9-8a19-9f2003e05f53", "Expires" : "-1", - "x-ms-request-id" : "24ef52f1-5693-4717-8ec2-c46fefb30465", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "6c5d1799-e487-4dff-9f59-0ffc2a0a21cc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "831b3a9d-05f8-4b6a-bea4-168ca0e6918a", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9969ba2a-f5c2-45bc-8ab2-61ecfa6f2808", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", + "x-ms-ratelimit-remaining-subscription-reads" : "11940", "StatusCode" : "200", - "x-ms-correlation-request-id" : "df9029d8-f35a-49c1-ae3f-fd8d3c89f829", - "Date" : "Mon, 23 Aug 2021 04:03:02 GMT", + "x-ms-correlation-request-id" : "a8a2f1b2-1e58-4a54-895e-fe5de4bee672", + "Date" : "Sun, 06 Mar 2022 07:00:28 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "831b3a9d-05f8-4b6a-bea4-168ca0e6918a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040302Z:df9029d8-f35a-49c1-ae3f-fd8d3c89f829", + "client-request-id" : "9969ba2a-f5c2-45bc-8ab2-61ecfa6f2808", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070028Z:a8a2f1b2-1e58-4a54-895e-fe5de4bee672", "Expires" : "-1", - "x-ms-request-id" : "1557cd1e-500d-44c5-a8bb-3fdced03f1c0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "d3b98cf1-0edb-439f-b588-11ba9c7cb049", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0b86bb02-c7c3-48b7-84be-3e360187ea3e", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6f82ebe3-f9b3-4f4b-8454-d9a95b572957", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", + "x-ms-ratelimit-remaining-subscription-reads" : "11943", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7000ec3-f0c0-4020-a2ae-60992fc8cb90", - "Date" : "Mon, 23 Aug 2021 04:03:33 GMT", + "x-ms-correlation-request-id" : "1900ce5c-8bbf-4ab1-889b-c6a47ac3d18f", + "Date" : "Sun, 06 Mar 2022 07:00:59 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "0b86bb02-c7c3-48b7-84be-3e360187ea3e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040334Z:a7000ec3-f0c0-4020-a2ae-60992fc8cb90", + "client-request-id" : "6f82ebe3-f9b3-4f4b-8454-d9a95b572957", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070100Z:1900ce5c-8bbf-4ab1-889b-c6a47ac3d18f", "Expires" : "-1", - "x-ms-request-id" : "db4a8d2a-4d0d-441c-9a14-2278ec2f2980", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "0447d13c-bf70-4d09-b5c7-3d258e8d231b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1706be51-b971-4244-b562-9687e0828fae", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b3872bce-06c4-4adb-9f18-315ec47ae791", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", + "x-ms-ratelimit-remaining-subscription-reads" : "11940", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c361b910-5426-4527-b595-f2ae23df3797", - "Date" : "Mon, 23 Aug 2021 04:03:35 GMT", + "x-ms-correlation-request-id" : "3057eaa8-8ab7-47ee-82e3-a144895553b2", + "Date" : "Sun, 06 Mar 2022 07:01:00 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "1706be51-b971-4244-b562-9687e0828fae", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040335Z:c361b910-5426-4527-b595-f2ae23df3797", + "client-request-id" : "b3872bce-06c4-4adb-9f18-315ec47ae791", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070101Z:3057eaa8-8ab7-47ee-82e3-a144895553b2", "Expires" : "-1", - "x-ms-request-id" : "045fa27c-b1c8-4144-908b-9ea45c185245", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "f827a857-4bfa-4ae3-ab54-18a58d7bfa82", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "85e49ed6-8efe-4b07-889f-51d65575ef02", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4623325e-1707-43e5-a57c-07e8ec956a8d", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", + "x-ms-ratelimit-remaining-subscription-reads" : "11947", "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd88fe7e-9fea-4382-ba81-b6d37bab6935", - "Date" : "Mon, 23 Aug 2021 04:04:05 GMT", + "x-ms-correlation-request-id" : "6e47efcf-8f51-4a4f-99ae-f27aa0fb145a", + "Date" : "Sun, 06 Mar 2022 07:01:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "85e49ed6-8efe-4b07-889f-51d65575ef02", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040406Z:fd88fe7e-9fea-4382-ba81-b6d37bab6935", + "client-request-id" : "4623325e-1707-43e5-a57c-07e8ec956a8d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070132Z:6e47efcf-8f51-4a4f-99ae-f27aa0fb145a", "Expires" : "-1", - "x-ms-request-id" : "13119035-ca61-4933-9053-f8ca3a3661aa", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "faa65b99-f3e3-4114-ae06-ff60240962b8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d967f41-bf73-47cc-a05e-bae2f0914c7c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b966476a-0cff-474a-9b96-de727be99a05", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "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" : "661bc38c-d030-493f-adb1-f8f8a3d8e6c7", - "Date" : "Mon, 23 Aug 2021 04:04:07 GMT", + "x-ms-correlation-request-id" : "ffaa9fad-6bb9-496a-882d-c669112833a8", + "Date" : "Sun, 06 Mar 2022 07:01:33 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "5d967f41-bf73-47cc-a05e-bae2f0914c7c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040408Z:661bc38c-d030-493f-adb1-f8f8a3d8e6c7", + "client-request-id" : "b966476a-0cff-474a-9b96-de727be99a05", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070133Z:ffaa9fad-6bb9-496a-882d-c669112833a8", "Expires" : "-1", - "x-ms-request-id" : "88bf6c0d-99b6-4063-98e2-70bbf476e527", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "6d02e58a-a034-4052-84c7-41817139c952", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fea3852-c536-45f7-9765-8356f9a5dd21", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "59f2f61b-63c3-4eec-92d5-3cc8ce6e7b46", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", + "x-ms-ratelimit-remaining-subscription-reads" : "11941", "StatusCode" : "200", - "x-ms-correlation-request-id" : "3dee0a89-2e7e-4094-bdf7-5d0862ca9292", - "Date" : "Mon, 23 Aug 2021 04:04:38 GMT", + "x-ms-correlation-request-id" : "ae98d6c9-22b6-42d1-8c4b-40cfd67565bf", + "Date" : "Sun, 06 Mar 2022 07:02:03 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8fea3852-c536-45f7-9765-8356f9a5dd21", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040439Z:3dee0a89-2e7e-4094-bdf7-5d0862ca9292", + "client-request-id" : "59f2f61b-63c3-4eec-92d5-3cc8ce6e7b46", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070204Z:ae98d6c9-22b6-42d1-8c4b-40cfd67565bf", "Expires" : "-1", - "x-ms-request-id" : "789cad27-f0c7-44a2-b5f9-166d026295e5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "fe4f1134-cb07-4927-82d0-fd0f929ff040", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f831b1eb-cc34-4f17-bc05-4885230e9a06", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2fc2e1e7-7eab-4a57-83c0-ec5681e9e2e6", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", + "x-ms-ratelimit-remaining-subscription-reads" : "11939", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1700206e-edc4-4abe-b08a-b08f91d06db4", - "Date" : "Mon, 23 Aug 2021 04:04:39 GMT", + "x-ms-correlation-request-id" : "5189ede3-5f99-4bc7-91cf-cb918fbd8028", + "Date" : "Sun, 06 Mar 2022 07:02:05 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f831b1eb-cc34-4f17-bc05-4885230e9a06", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040440Z:1700206e-edc4-4abe-b08a-b08f91d06db4", + "client-request-id" : "2fc2e1e7-7eab-4a57-83c0-ec5681e9e2e6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070205Z:5189ede3-5f99-4bc7-91cf-cb918fbd8028", "Expires" : "-1", - "x-ms-request-id" : "46852990-63ed-4fc5-b484-fde7394321d0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "6ad4aa6b-52f4-4bd8-b709-b41e7a35c5f5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "58484e9a-710f-472b-8028-a571e50fb615", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ddf10c5d-e273-47cb-be75-47132f9d92eb", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11944", + "x-ms-ratelimit-remaining-subscription-reads" : "11942", "StatusCode" : "200", - "x-ms-correlation-request-id" : "89c18d44-fb75-4742-9b6f-740455f411a5", - "Date" : "Mon, 23 Aug 2021 04:05:11 GMT", + "x-ms-correlation-request-id" : "89b22d24-de38-4d10-a141-6709166b8fda", + "Date" : "Sun, 06 Mar 2022 07:02:36 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "58484e9a-710f-472b-8028-a571e50fb615", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040512Z:89c18d44-fb75-4742-9b6f-740455f411a5", + "client-request-id" : "ddf10c5d-e273-47cb-be75-47132f9d92eb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070236Z:89b22d24-de38-4d10-a141-6709166b8fda", "Expires" : "-1", - "x-ms-request-id" : "31613737-b027-43e5-9112-accfaa6e0927", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "c48a62c8-5d1a-4449-ac0c-11e46c8cab24", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d86b80dd-0bc4-4633-aa5b-40e561fba28f", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "63c6ef9a-b601-4c8e-948f-8f34a05da8d6", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", + "x-ms-ratelimit-remaining-subscription-reads" : "11939", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bfb4e1d3-a380-461a-81cc-4b292c6b26a3", - "Date" : "Mon, 23 Aug 2021 04:05:12 GMT", + "x-ms-correlation-request-id" : "3b7f685f-f0c4-4486-b38c-b528d60ac784", + "Date" : "Sun, 06 Mar 2022 07:02:37 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d86b80dd-0bc4-4633-aa5b-40e561fba28f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040513Z:bfb4e1d3-a380-461a-81cc-4b292c6b26a3", + "client-request-id" : "63c6ef9a-b601-4c8e-948f-8f34a05da8d6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070238Z:3b7f685f-f0c4-4486-b38c-b528d60ac784", "Expires" : "-1", - "x-ms-request-id" : "c2c72298-c6b7-4ca0-b7e6-0c6f45c85bd8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "ac7fdff4-1404-4523-8514-88fa9667fe2a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cf28a55-6b6e-44a9-bbbf-90d29b746c42", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "eecc8b6c-6336-4d64-87e0-90d863b5d702", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", + "x-ms-ratelimit-remaining-subscription-reads" : "11946", "StatusCode" : "200", - "x-ms-correlation-request-id" : "7cefb21b-ee94-4794-9872-2eb19eb6ee92", - "Date" : "Mon, 23 Aug 2021 04:05:46 GMT", + "x-ms-correlation-request-id" : "a3592815-59ae-4622-8b5e-0ef81fcddf49", + "Date" : "Sun, 06 Mar 2022 07:03:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8cf28a55-6b6e-44a9-bbbf-90d29b746c42", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040546Z:7cefb21b-ee94-4794-9872-2eb19eb6ee92", + "client-request-id" : "eecc8b6c-6336-4d64-87e0-90d863b5d702", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070309Z:a3592815-59ae-4622-8b5e-0ef81fcddf49", "Expires" : "-1", - "x-ms-request-id" : "dd00ddbf-561b-4e06-a6c9-6ba55acab3a1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "33fed874-1b97-4a7b-bf6e-02c36b756f19", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf2141c5-d997-4adb-829c-9b4c08cd847d", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "93ae8899-519f-4803-a4b7-fc32fd5b645a", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11943", + "x-ms-ratelimit-remaining-subscription-reads" : "11944", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e2b4dc61-f3fa-4c3f-9af2-161ae7bd2f2b", - "Date" : "Mon, 23 Aug 2021 04:05:47 GMT", + "x-ms-correlation-request-id" : "620e1612-1ee8-4674-9226-c4d0711f20c0", + "Date" : "Sun, 06 Mar 2022 07:03:10 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "bf2141c5-d997-4adb-829c-9b4c08cd847d", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040547Z:e2b4dc61-f3fa-4c3f-9af2-161ae7bd2f2b", + "client-request-id" : "93ae8899-519f-4803-a4b7-fc32fd5b645a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070310Z:620e1612-1ee8-4674-9226-c4d0711f20c0", "Expires" : "-1", - "x-ms-request-id" : "d45120e1-1e13-4aba-95ec-724c9a164802", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "74d834bf-eb39-4781-9287-fb60c7dc0316", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "905ff0d9-d88b-4d29-ba16-218e3d7be942", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ff0376f8-13e7-4852-9384-9b352aa9f0af", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", + "x-ms-ratelimit-remaining-subscription-reads" : "11940", "StatusCode" : "200", - "x-ms-correlation-request-id" : "3a4f36eb-d304-46bc-8eb8-edccac9e0cee", - "Date" : "Mon, 23 Aug 2021 04:06:19 GMT", + "x-ms-correlation-request-id" : "b4a71506-79c9-4f38-a44c-6dd5851a8fff", + "Date" : "Sun, 06 Mar 2022 07:03:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "905ff0d9-d88b-4d29-ba16-218e3d7be942", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040620Z:3a4f36eb-d304-46bc-8eb8-edccac9e0cee", + "client-request-id" : "ff0376f8-13e7-4852-9384-9b352aa9f0af", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070342Z:b4a71506-79c9-4f38-a44c-6dd5851a8fff", "Expires" : "-1", - "x-ms-request-id" : "7ae3f141-f8ea-4f69-a9fb-10eaef27f32f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "64470251-830d-4baf-a7c2-5f6fda9f79b3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "010256a3-3f3b-436c-a835-cf664071c5bb", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "eed6231b-f904-40e2-9155-36cc8e9a8250", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", + "x-ms-ratelimit-remaining-subscription-reads" : "11938", "StatusCode" : "200", - "x-ms-correlation-request-id" : "114a5831-b78f-4b77-879d-6f297a1dc155", - "Date" : "Mon, 23 Aug 2021 04:06:20 GMT", + "x-ms-correlation-request-id" : "55594171-27a9-4f65-9414-45fde36dfd78", + "Date" : "Sun, 06 Mar 2022 07:03:42 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "010256a3-3f3b-436c-a835-cf664071c5bb", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040621Z:114a5831-b78f-4b77-879d-6f297a1dc155", + "client-request-id" : "eed6231b-f904-40e2-9155-36cc8e9a8250", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070343Z:55594171-27a9-4f65-9414-45fde36dfd78", "Expires" : "-1", - "x-ms-request-id" : "11545ad6-c307-42a2-9045-eaa9ed92f9e0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "baccc77e-ddb9-41fb-bdc0-cfd8a786c6ab", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5786b10-de78-4ee5-82d6-7b32e8986c3a", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "10e3dfd0-3342-4914-8153-4436bb506660", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11942", + "x-ms-ratelimit-remaining-subscription-reads" : "11941", "StatusCode" : "200", - "x-ms-correlation-request-id" : "790c258e-f358-4b25-a299-ab049cf8937f", - "Date" : "Mon, 23 Aug 2021 04:06:52 GMT", + "x-ms-correlation-request-id" : "d01ee5b4-d1a0-42bf-a47c-3ea0c14125ad", + "Date" : "Sun, 06 Mar 2022 07:04:13 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e5786b10-de78-4ee5-82d6-7b32e8986c3a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040652Z:790c258e-f358-4b25-a299-ab049cf8937f", + "client-request-id" : "10e3dfd0-3342-4914-8153-4436bb506660", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070414Z:d01ee5b4-d1a0-42bf-a47c-3ea0c14125ad", "Expires" : "-1", - "x-ms-request-id" : "e6654d87-acdd-45ae-97dc-0b3e0b6ade0a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "5e159f68-a4dd-44a0-a75d-15b4b7e4ee1c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4988b2a1-d896-40b8-8272-4a09e46b7476", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e74845d7-fd41-4a66-bf9c-4cf533d1f71d", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", + "x-ms-ratelimit-remaining-subscription-reads" : "11938", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6d29c3b6-757c-47a2-b89c-94aaa8c83705", - "Date" : "Mon, 23 Aug 2021 04:06:53 GMT", + "x-ms-correlation-request-id" : "7a351817-4d34-4f53-a707-fd98f9457153", + "Date" : "Sun, 06 Mar 2022 07:04:14 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4988b2a1-d896-40b8-8272-4a09e46b7476", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040653Z:6d29c3b6-757c-47a2-b89c-94aaa8c83705", + "client-request-id" : "e74845d7-fd41-4a66-bf9c-4cf533d1f71d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070415Z:7a351817-4d34-4f53-a707-fd98f9457153", "Expires" : "-1", - "x-ms-request-id" : "982d3b27-9dfc-464e-8aec-0db51993aba9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "efe61c24-ec80-46d1-830e-b5b165353c8c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "86bf73b2-f72b-4e3a-9ca2-6e1aafc4e5ec", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f94fbe52-fe54-4771-aafc-3c6270bfb220", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", + "x-ms-ratelimit-remaining-subscription-reads" : "11945", "StatusCode" : "200", - "x-ms-correlation-request-id" : "032a901f-95a6-4e4c-8d14-99fc0117b44e", - "Date" : "Mon, 23 Aug 2021 04:07:24 GMT", + "x-ms-correlation-request-id" : "56b5d5ff-00cf-411b-8893-5336a65e0040", + "Date" : "Sun, 06 Mar 2022 07:04:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "86bf73b2-f72b-4e3a-9ca2-6e1aafc4e5ec", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040725Z:032a901f-95a6-4e4c-8d14-99fc0117b44e", + "client-request-id" : "f94fbe52-fe54-4771-aafc-3c6270bfb220", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070447Z:56b5d5ff-00cf-411b-8893-5336a65e0040", "Expires" : "-1", - "x-ms-request-id" : "2c8def46-638e-4e88-a98f-509715ccda7a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "7df5e98b-f847-4eed-924d-0684beee8cf0", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2c67455-938c-40d1-8b4e-bb17217c747c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "eb52924c-2ab0-4704-bba9-a52142f89cec", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", + "x-ms-ratelimit-remaining-subscription-reads" : "11943", "StatusCode" : "200", - "x-ms-correlation-request-id" : "82c9dc03-bafe-4337-a809-75732c91765a", - "Date" : "Mon, 23 Aug 2021 04:07:26 GMT", + "x-ms-correlation-request-id" : "ca806d6e-b19a-4adf-9c42-160d23291e3e", + "Date" : "Sun, 06 Mar 2022 07:04:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f2c67455-938c-40d1-8b4e-bb17217c747c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040726Z:82c9dc03-bafe-4337-a809-75732c91765a", + "client-request-id" : "eb52924c-2ab0-4704-bba9-a52142f89cec", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070448Z:ca806d6e-b19a-4adf-9c42-160d23291e3e", "Expires" : "-1", - "x-ms-request-id" : "b8372e6d-4e9f-4f02-b50c-482db4497d90", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "b68e0d10-0c98-456a-8b94-f87fbeb0d349", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "385f45dc-8ec7-4c9e-9098-77678df2a564", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e6de04b4-36e6-405c-a678-c555c70e62c6", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "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", - "x-ms-correlation-request-id" : "9d41967a-8d72-42b2-9664-b67f5f312aab", - "Date" : "Mon, 23 Aug 2021 04:07:56 GMT", + "x-ms-correlation-request-id" : "0f7551b0-daf3-48c4-9696-3ad7a81dc3f1", + "Date" : "Sun, 06 Mar 2022 07:05:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "385f45dc-8ec7-4c9e-9098-77678df2a564", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040757Z:9d41967a-8d72-42b2-9664-b67f5f312aab", + "client-request-id" : "e6de04b4-36e6-405c-a678-c555c70e62c6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070519Z:0f7551b0-daf3-48c4-9696-3ad7a81dc3f1", "Expires" : "-1", - "x-ms-request-id" : "5ac7cbf4-bc72-49e8-8357-faa849916ee6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "5dcd56be-75c6-4311-b5e8-aaa661d7ed88", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f2ffc31-b63d-4cba-8d63-dc8619690bc6", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "895815ab-6084-4e54-803d-e61b26ae584b", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "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", - "x-ms-correlation-request-id" : "ed6fb871-cb90-4e17-a9a3-010610cfaa0b", - "Date" : "Mon, 23 Aug 2021 04:08:01 GMT", + "x-ms-correlation-request-id" : "3b479a8c-f008-4aa2-bf39-5a9ed2ee644e", + "Date" : "Sun, 06 Mar 2022 07:05:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4f2ffc31-b63d-4cba-8d63-dc8619690bc6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040802Z:ed6fb871-cb90-4e17-a9a3-010610cfaa0b", + "client-request-id" : "895815ab-6084-4e54-803d-e61b26ae584b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070520Z:3b479a8c-f008-4aa2-bf39-5a9ed2ee644e", "Expires" : "-1", - "x-ms-request-id" : "4324b729-d6f5-4a62-9c57-85e7ce7edac4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "5a9cfecd-7966-49ae-8988-df1a928270a9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "914eb090-c3c9-4413-a617-c62bf8f3ded4", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8c2730a1-d893-4b5a-a780-a3eab706d91a", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "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" : "5cd64c5f-215c-48a1-9d83-b1e73f76b6b1", - "Date" : "Mon, 23 Aug 2021 04:08:32 GMT", + "x-ms-correlation-request-id" : "147d93cb-fd66-4166-b576-3f6466664969", + "Date" : "Sun, 06 Mar 2022 07:05:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "914eb090-c3c9-4413-a617-c62bf8f3ded4", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040832Z:5cd64c5f-215c-48a1-9d83-b1e73f76b6b1", + "client-request-id" : "8c2730a1-d893-4b5a-a780-a3eab706d91a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070551Z:147d93cb-fd66-4166-b576-3f6466664969", "Expires" : "-1", - "x-ms-request-id" : "e0ff0765-8816-4400-9630-0cff970f4771", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "5702c909-e532-4932-8155-1c289c808c25", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba620fef-7d90-4896-b2a9-209d78df2d23", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6475115e-909c-42c7-9d30-9451c6b5b84c", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", + "x-ms-ratelimit-remaining-subscription-reads" : "11937", "StatusCode" : "200", - "x-ms-correlation-request-id" : "49a0768b-7ef3-4032-b6bb-da064bcf6a1f", - "Date" : "Mon, 23 Aug 2021 04:08:36 GMT", + "x-ms-correlation-request-id" : "5f3f9f34-850c-461a-8704-4b73044e506f", + "Date" : "Sun, 06 Mar 2022 07:05:51 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ba620fef-7d90-4896-b2a9-209d78df2d23", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040836Z:49a0768b-7ef3-4032-b6bb-da064bcf6a1f", + "client-request-id" : "6475115e-909c-42c7-9d30-9451c6b5b84c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070552Z:5f3f9f34-850c-461a-8704-4b73044e506f", "Expires" : "-1", - "x-ms-request-id" : "53c5c306-2e7c-476b-b025-2f76236e5dbd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "157e8e5f-1a23-40e0-ac5c-536f9b4c2316", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "48379ae6-12cc-4ff7-bc84-f7295ca2d546", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "22ad3ac2-aeb3-4983-9058-c8690da865d6", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", + "x-ms-ratelimit-remaining-subscription-reads" : "11944", "StatusCode" : "200", - "x-ms-correlation-request-id" : "30edad17-8c12-48ab-b246-f267f1f112ae", - "Date" : "Mon, 23 Aug 2021 04:09:08 GMT", + "x-ms-correlation-request-id" : "a15d5a05-aa95-459d-859d-d538062b467e", + "Date" : "Sun, 06 Mar 2022 07:06:22 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "48379ae6-12cc-4ff7-bc84-f7295ca2d546", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040908Z:30edad17-8c12-48ab-b246-f267f1f112ae", + "client-request-id" : "22ad3ac2-aeb3-4983-9058-c8690da865d6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070623Z:a15d5a05-aa95-459d-859d-d538062b467e", "Expires" : "-1", - "x-ms-request-id" : "0aaa8229-c590-4791-86fb-e632430779da", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "bc67e456-ea9d-45dd-9ce4-4b98082eb0c9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a835f494-2a32-416a-baae-e3bb0aa53eba", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a0f948f1-c4f9-4ca9-8052-813ba854f788", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", + "x-ms-ratelimit-remaining-subscription-reads" : "11942", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0bbc401f-f941-4831-adeb-30a349a50a7f", - "Date" : "Mon, 23 Aug 2021 04:09:09 GMT", + "x-ms-correlation-request-id" : "22d0b38c-f30f-44a5-bc06-b359407eaabd", + "Date" : "Sun, 06 Mar 2022 07:06:24 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a835f494-2a32-416a-baae-e3bb0aa53eba", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040909Z:0bbc401f-f941-4831-adeb-30a349a50a7f", + "client-request-id" : "a0f948f1-c4f9-4ca9-8052-813ba854f788", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070625Z:22d0b38c-f30f-44a5-bc06-b359407eaabd", "Expires" : "-1", - "x-ms-request-id" : "a1493924-783d-4a4e-8a20-51c06d90e0e0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "02dba2f2-6133-4db6-8652-4d7b20f8e934", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3fe99b7-aab7-4d22-8b89-16cf90a8f5fc", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "dd3ada47-d6b5-4f12-ba2d-332de17f57e7", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", + "x-ms-ratelimit-remaining-subscription-reads" : "11938", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ae982d1d-07e3-4234-a96b-3ef9a6e07853", - "Date" : "Mon, 23 Aug 2021 04:09:40 GMT", + "x-ms-correlation-request-id" : "be3af4bf-a31a-4104-9ac6-01dce6305ff7", + "Date" : "Sun, 06 Mar 2022 07:06:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c3fe99b7-aab7-4d22-8b89-16cf90a8f5fc", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040941Z:ae982d1d-07e3-4234-a96b-3ef9a6e07853", + "client-request-id" : "dd3ada47-d6b5-4f12-ba2d-332de17f57e7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070656Z:be3af4bf-a31a-4104-9ac6-01dce6305ff7", "Expires" : "-1", - "x-ms-request-id" : "ecd19dff-f3da-4be0-a4e8-4ea366fbfa95", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "7c35dbd1-415a-44b3-bdc0-cd1146a6485f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2b19fd3-1e7a-462c-b7e2-a5c770c50912", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "253477ca-1fc7-4f71-853c-d1ec4f06e50a", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", + "x-ms-ratelimit-remaining-subscription-reads" : "11936", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c380064c-4233-4e3e-8bdb-1b97e127de40", - "Date" : "Mon, 23 Aug 2021 04:09:43 GMT", + "x-ms-correlation-request-id" : "63190983-ca85-4b84-939c-7e332006f125", + "Date" : "Sun, 06 Mar 2022 07:06:56 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "b2b19fd3-1e7a-462c-b7e2-a5c770c50912", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T040943Z:c380064c-4233-4e3e-8bdb-1b97e127de40", + "client-request-id" : "253477ca-1fc7-4f71-853c-d1ec4f06e50a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070657Z:63190983-ca85-4b84-939c-7e332006f125", "Expires" : "-1", - "x-ms-request-id" : "119101b7-63c0-464d-b32b-05bbf9c94447", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "17810e7a-ebd9-4bef-8f8a-ed610531ca13", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "580f8c61-2cd9-4dfb-9174-dc5ad0e6e2a4", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c87ee780-4f29-4c1d-a9ea-26d14edf5399", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", + "x-ms-ratelimit-remaining-subscription-reads" : "11939", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2b5012a3-db76-40a4-8e79-2ea4cd3b5a69", - "Date" : "Mon, 23 Aug 2021 04:10:14 GMT", + "x-ms-correlation-request-id" : "26dfce47-3a61-422e-afe4-9be7f52889d5", + "Date" : "Sun, 06 Mar 2022 07:07:28 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "580f8c61-2cd9-4dfb-9174-dc5ad0e6e2a4", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041015Z:2b5012a3-db76-40a4-8e79-2ea4cd3b5a69", + "client-request-id" : "c87ee780-4f29-4c1d-a9ea-26d14edf5399", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070728Z:26dfce47-3a61-422e-afe4-9be7f52889d5", "Expires" : "-1", - "x-ms-request-id" : "1097043a-b6e1-41c4-9bae-c2e0edcbf174", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "e14bd915-144d-4028-8ec2-7cc69b63a7ca", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a4c4cee3-ff2c-4f65-87b1-9d608c719db0", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bc032dd6-e9a1-4d17-a501-9595153dfebb", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "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", - "x-ms-correlation-request-id" : "c4212241-cf11-417c-b45e-61b013cd6acf", - "Date" : "Mon, 23 Aug 2021 04:10:16 GMT", + "x-ms-correlation-request-id" : "fb2c870b-0fdc-47c4-98e6-a6b6da563770", + "Date" : "Sun, 06 Mar 2022 07:07:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a4c4cee3-ff2c-4f65-87b1-9d608c719db0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041017Z:c4212241-cf11-417c-b45e-61b013cd6acf", + "client-request-id" : "bc032dd6-e9a1-4d17-a501-9595153dfebb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070729Z:fb2c870b-0fdc-47c4-98e6-a6b6da563770", "Expires" : "-1", - "x-ms-request-id" : "8a033a60-194c-4545-af8c-f010dfb52bbd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "ba4ca62e-0951-4990-baab-98f7af3a617f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9088880-d33e-408c-b1fa-4afa3bd76e68", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1de4e384-ac48-4ab7-944d-3608cab92a2a", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", + "x-ms-ratelimit-remaining-subscription-reads" : "11943", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ae5d15b5-e11c-425a-a14e-1752fd285e67", - "Date" : "Mon, 23 Aug 2021 04:10:47 GMT", + "x-ms-correlation-request-id" : "de26286f-cd0a-4a7f-b35e-d20c5599f868", + "Date" : "Sun, 06 Mar 2022 07:07:59 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d9088880-d33e-408c-b1fa-4afa3bd76e68", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041048Z:ae5d15b5-e11c-425a-a14e-1752fd285e67", + "client-request-id" : "1de4e384-ac48-4ab7-944d-3608cab92a2a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070800Z:de26286f-cd0a-4a7f-b35e-d20c5599f868", "Expires" : "-1", - "x-ms-request-id" : "b9b526c8-5887-469c-812f-55fa95d7e073", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "1489b2a7-7d9c-4738-aadb-feb40e774c9f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a4249a87-ac75-4f33-9392-faf69a82bd42", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5da93784-48aa-4719-a656-a5d264e1341f", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11937", + "x-ms-ratelimit-remaining-subscription-reads" : "11941", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e7b6f5ee-d7f1-4b69-9d06-601742dcea84", - "Date" : "Mon, 23 Aug 2021 04:10:50 GMT", + "x-ms-correlation-request-id" : "f7d96447-b7b3-4edf-baab-d37897ccc6c5", + "Date" : "Sun, 06 Mar 2022 07:08:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a4249a87-ac75-4f33-9392-faf69a82bd42", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041050Z:e7b6f5ee-d7f1-4b69-9d06-601742dcea84", + "client-request-id" : "5da93784-48aa-4719-a656-a5d264e1341f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070801Z:f7d96447-b7b3-4edf-baab-d37897ccc6c5", "Expires" : "-1", - "x-ms-request-id" : "638e8793-646a-4446-9236-9c4b2c2e68c4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "60ec1983-593a-45ff-9f54-4027e15b3ab7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b309192-2807-43fc-8795-25375a29609c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c830e59e-f3dc-4e84-8647-ad3db3f6d567", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", + "x-ms-ratelimit-remaining-subscription-reads" : "11937", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d4b88ca6-6529-4619-81ab-a284cba11c6f", - "Date" : "Mon, 23 Aug 2021 04:11:21 GMT", + "x-ms-correlation-request-id" : "6d7d3703-ee70-48cd-ad25-197c731f272e", + "Date" : "Sun, 06 Mar 2022 07:08:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "2b309192-2807-43fc-8795-25375a29609c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041122Z:d4b88ca6-6529-4619-81ab-a284cba11c6f", + "client-request-id" : "c830e59e-f3dc-4e84-8647-ad3db3f6d567", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070833Z:6d7d3703-ee70-48cd-ad25-197c731f272e", "Expires" : "-1", - "x-ms-request-id" : "b05b9adf-b95e-4c26-a63c-61adeedeab0b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "418aa135-8109-47f6-8d97-9c1b3fb0f554", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d9673563-71ee-4658-a5a3-d62c0405b11d", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "386ea8c7-3be9-4a80-b374-c6b14983eae7", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", + "x-ms-ratelimit-remaining-subscription-reads" : "11935", "StatusCode" : "200", - "x-ms-correlation-request-id" : "3a4ef169-b230-4377-af55-3b5a4af7c3ba", - "Date" : "Mon, 23 Aug 2021 04:11:25 GMT", + "x-ms-correlation-request-id" : "570bfcbb-9d9d-4dd8-b2bd-b71dad8c3ed0", + "Date" : "Sun, 06 Mar 2022 07:08:33 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d9673563-71ee-4658-a5a3-d62c0405b11d", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041125Z:3a4ef169-b230-4377-af55-3b5a4af7c3ba", + "client-request-id" : "386ea8c7-3be9-4a80-b374-c6b14983eae7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070834Z:570bfcbb-9d9d-4dd8-b2bd-b71dad8c3ed0", "Expires" : "-1", - "x-ms-request-id" : "d9403ac8-507c-4b44-971d-dea7d1406ac2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "e2119d3c-2faf-4f35-85d4-4bc58c23b1d2", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8edb5873-4e3d-4daf-99ca-e036d8a8fa6f", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1cb444b8-6bdf-41d8-b076-fcee44aecc45", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", + "x-ms-ratelimit-remaining-subscription-reads" : "11938", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bce605d8-68cf-4a7c-8755-e9aa84e7fcf0", - "Date" : "Mon, 23 Aug 2021 04:11:57 GMT", + "x-ms-correlation-request-id" : "c3525cfb-0a6d-44c9-9e13-8f08e23eb129", + "Date" : "Sun, 06 Mar 2022 07:09:04 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8edb5873-4e3d-4daf-99ca-e036d8a8fa6f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041157Z:bce605d8-68cf-4a7c-8755-e9aa84e7fcf0", + "client-request-id" : "1cb444b8-6bdf-41d8-b076-fcee44aecc45", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070905Z:c3525cfb-0a6d-44c9-9e13-8f08e23eb129", "Expires" : "-1", - "x-ms-request-id" : "73b22d33-7af9-4016-b821-71c2fc93af04", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "bc48c1dc-78b0-4446-87fe-eb58d5a1c739", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbbfa34c-5ac1-4a67-a6d3-4fc70781032c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e585aaac-c795-419e-b2c0-d66b2d741fb5", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", + "x-ms-ratelimit-remaining-subscription-reads" : "11935", "StatusCode" : "200", - "x-ms-correlation-request-id" : "09fe237f-4801-4902-a44b-ca2b3d702487", - "Date" : "Mon, 23 Aug 2021 04:11:58 GMT", + "x-ms-correlation-request-id" : "cb1cfcb9-e02d-4f75-bbd2-59b0e2f7d502", + "Date" : "Sun, 06 Mar 2022 07:09:06 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cbbfa34c-5ac1-4a67-a6d3-4fc70781032c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041159Z:09fe237f-4801-4902-a44b-ca2b3d702487", + "client-request-id" : "e585aaac-c795-419e-b2c0-d66b2d741fb5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070906Z:cb1cfcb9-e02d-4f75-bbd2-59b0e2f7d502", "Expires" : "-1", - "x-ms-request-id" : "49c3d033-9193-406c-9592-bcb9635f4cd1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "3b32a2ae-9c49-48da-91ac-44674656e28b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "653a7dc7-e130-403b-b876-e0d1fa1518f5", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "685e6756-9750-40e6-8d2e-c47918c3be0c", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", + "x-ms-ratelimit-remaining-subscription-reads" : "11942", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1ff2066d-8b3f-4a85-8438-5ed1064d6ef9", - "Date" : "Mon, 23 Aug 2021 04:12:29 GMT", + "x-ms-correlation-request-id" : "86c42404-a568-4e40-938f-dcc840494160", + "Date" : "Sun, 06 Mar 2022 07:09:37 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "653a7dc7-e130-403b-b876-e0d1fa1518f5", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041230Z:1ff2066d-8b3f-4a85-8438-5ed1064d6ef9", + "client-request-id" : "685e6756-9750-40e6-8d2e-c47918c3be0c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070937Z:86c42404-a568-4e40-938f-dcc840494160", "Expires" : "-1", - "x-ms-request-id" : "8f4f1c88-b53e-44ae-9f37-25dbacfd314c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "2515b597-7825-4b13-932e-9a0921476536", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e80088ed-e3ce-4d00-8520-632755ebb98f", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "977102d6-3c8b-417f-b741-7b3c109dbc4d", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", + "x-ms-ratelimit-remaining-subscription-reads" : "11940", "StatusCode" : "200", - "x-ms-correlation-request-id" : "92cd6312-261b-4ebb-9fdd-7926fae3e62a", - "Date" : "Mon, 23 Aug 2021 04:12:34 GMT", + "x-ms-correlation-request-id" : "0c5addcc-5987-405e-a112-7690cfed9e8a", + "Date" : "Sun, 06 Mar 2022 07:09:38 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e80088ed-e3ce-4d00-8520-632755ebb98f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041234Z:92cd6312-261b-4ebb-9fdd-7926fae3e62a", + "client-request-id" : "977102d6-3c8b-417f-b741-7b3c109dbc4d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T070938Z:0c5addcc-5987-405e-a112-7690cfed9e8a", "Expires" : "-1", - "x-ms-request-id" : "9965f7ae-b997-40fa-953c-13be04a4ed5d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "3aa1a2b1-aa80-42ff-8d19-931f8ab111f9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "82e417fa-3a19-416e-8d77-15228c6f600d", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2f51b09a-1514-4f24-a8e8-36793f1f0d18", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", + "x-ms-ratelimit-remaining-subscription-reads" : "11936", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e3e4d2aa-dd16-4530-a2b7-d22c4b2d5503", - "Date" : "Mon, 23 Aug 2021 04:13:05 GMT", + "x-ms-correlation-request-id" : "7aa733e7-318f-4a2e-be56-09cbc3e34130", + "Date" : "Sun, 06 Mar 2022 07:10:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "82e417fa-3a19-416e-8d77-15228c6f600d", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041306Z:e3e4d2aa-dd16-4530-a2b7-d22c4b2d5503", + "client-request-id" : "2f51b09a-1514-4f24-a8e8-36793f1f0d18", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071010Z:7aa733e7-318f-4a2e-be56-09cbc3e34130", "Expires" : "-1", - "x-ms-request-id" : "eaac771a-bbf7-46e9-b2d9-bb50e0118017", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "3e08d748-6cba-4ad1-b678-9da7fb5a2999", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "45004cfb-f716-4080-887b-19a2f1e44ac6", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "75cce479-6fa4-4fe2-914d-bfbc3b08691d", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", + "x-ms-ratelimit-remaining-subscription-reads" : "11934", "StatusCode" : "200", - "x-ms-correlation-request-id" : "cb21b436-c2fd-4c30-9eaa-f8d41a3da958", - "Date" : "Mon, 23 Aug 2021 04:13:07 GMT", + "x-ms-correlation-request-id" : "7f497265-fc76-4238-be7e-7272bd836ef5", + "Date" : "Sun, 06 Mar 2022 07:10:10 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "45004cfb-f716-4080-887b-19a2f1e44ac6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041307Z:cb21b436-c2fd-4c30-9eaa-f8d41a3da958", + "client-request-id" : "75cce479-6fa4-4fe2-914d-bfbc3b08691d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071011Z:7f497265-fc76-4238-be7e-7272bd836ef5", "Expires" : "-1", - "x-ms-request-id" : "66768653-e5c1-4c97-8c09-7b212e6f5bf0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "bac256c7-85b9-4a3e-9ae3-58bf9ad60fa3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ad17118-502e-4382-b624-e96ae7a10743", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d33865f9-520e-4ed0-8ba3-ccba4b83f34d", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", + "x-ms-ratelimit-remaining-subscription-reads" : "11937", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ab776da5-f99d-4396-b302-8d469878927d", - "Date" : "Mon, 23 Aug 2021 04:13:38 GMT", + "x-ms-correlation-request-id" : "418027a6-d162-4609-80ad-91a9f2c2de4c", + "Date" : "Sun, 06 Mar 2022 07:10:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "3ad17118-502e-4382-b624-e96ae7a10743", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041338Z:ab776da5-f99d-4396-b302-8d469878927d", + "client-request-id" : "d33865f9-520e-4ed0-8ba3-ccba4b83f34d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071042Z:418027a6-d162-4609-80ad-91a9f2c2de4c", "Expires" : "-1", - "x-ms-request-id" : "e8e328c4-26b6-4e1b-9917-3a526bac29b4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "9044d904-a274-457e-b5c3-bcea88e7e2e3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f959a43e-47dc-454b-9b0a-bc7f7875c4e6", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "04d697cf-8b61-41de-adf6-de07ed802f91", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", + "x-ms-ratelimit-remaining-subscription-reads" : "11934", "StatusCode" : "200", - "x-ms-correlation-request-id" : "67bd53b7-ed5a-42a6-8442-9f72b75306ae", - "Date" : "Mon, 23 Aug 2021 04:13:40 GMT", + "x-ms-correlation-request-id" : "65387c5b-c0e0-4b66-87e1-6f183e7c7182", + "Date" : "Sun, 06 Mar 2022 07:10:43 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f959a43e-47dc-454b-9b0a-bc7f7875c4e6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041340Z:67bd53b7-ed5a-42a6-8442-9f72b75306ae", + "client-request-id" : "04d697cf-8b61-41de-adf6-de07ed802f91", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071043Z:65387c5b-c0e0-4b66-87e1-6f183e7c7182", "Expires" : "-1", - "x-ms-request-id" : "f156b694-ec06-4e35-9abb-d41d40f3c87a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c6b63c2f-9d8e-4f41-9722-2c5c177b13c0", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c32ab38c-bd76-4f64-aca9-f4e60a0fa007", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0ac0fdf5-349d-4ecd-9f53-16ba45150c07", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", + "x-ms-ratelimit-remaining-subscription-reads" : "11941", "StatusCode" : "200", - "x-ms-correlation-request-id" : "5782debd-4da6-4c14-a5f6-cb93753ecb39", - "Date" : "Mon, 23 Aug 2021 04:14:10 GMT", + "x-ms-correlation-request-id" : "09c3d6a7-fab6-4a83-bc6c-241424cb31f3", + "Date" : "Sun, 06 Mar 2022 07:11:13 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c32ab38c-bd76-4f64-aca9-f4e60a0fa007", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041411Z:5782debd-4da6-4c14-a5f6-cb93753ecb39", + "client-request-id" : "0ac0fdf5-349d-4ecd-9f53-16ba45150c07", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071114Z:09c3d6a7-fab6-4a83-bc6c-241424cb31f3", "Expires" : "-1", - "x-ms-request-id" : "1939b4d7-eeab-4d49-a17d-e3fc8a65a60b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "16c541d5-fa71-474c-a9e2-b73f668a2516", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3621d673-9ab0-4561-9359-b5e130b16740", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a67b711f-c5f2-497f-8da3-2112629363a3", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", + "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", + "x-ms-correlation-request-id" : "a4a5f963-cf22-451c-a3e9-1775174eec18", + "Date" : "Sun, 06 Mar 2022 07:11:15 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "a67b711f-c5f2-497f-8da3-2112629363a3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071115Z:a4a5f963-cf22-451c-a3e9-1775174eec18", + "Expires" : "-1", + "x-ms-request-id" : "669d63a8-8754-4df3-b913-eff3173c8151", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1fb96653-499c-40ac-9972-e2e460cc8576", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "979", + "Server" : "Microsoft-HTTPAPI/2.0", + "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" : "9f7dd9ca-05af-4669-93a4-706e692ebf84", + "Date" : "Sun, 06 Mar 2022 07:11:46 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "1fb96653-499c-40ac-9972-e2e460cc8576", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071147Z:9f7dd9ca-05af-4669-93a4-706e692ebf84", + "Expires" : "-1", + "x-ms-request-id" : "aa95678e-d3df-4ee0-b596-76dec74662ef", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4eabf621-b607-4019-a86c-79b6b7586af1", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "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" : "59e057bc-2b5a-4088-a18c-329022f6b70d", - "Date" : "Mon, 23 Aug 2021 04:14:11 GMT", + "x-ms-correlation-request-id" : "61e553ed-fab2-4fd3-8766-1db011649de1", + "Date" : "Sun, 06 Mar 2022 07:11:48 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "3621d673-9ab0-4561-9359-b5e130b16740", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041412Z:59e057bc-2b5a-4088-a18c-329022f6b70d", + "client-request-id" : "4eabf621-b607-4019-a86c-79b6b7586af1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071148Z:61e553ed-fab2-4fd3-8766-1db011649de1", "Expires" : "-1", - "x-ms-request-id" : "2b811450-47e6-472a-b676-7190faa0a573", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "e2262481-390c-4911-afbf-6fb094ba3c50", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5f2c1da-2cfd-42c8-8b1d-9e495ba22800", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2156db9f-b26e-4f61-b1e7-71b3e903c0f7", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", + "x-ms-ratelimit-remaining-subscription-reads" : "11936", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f6cc0b74-9d29-488a-9148-f5f9d60e5e65", - "Date" : "Mon, 23 Aug 2021 04:18:45 GMT", + "x-ms-correlation-request-id" : "b00f670d-7a98-4d51-abb9-c20436bf6ee2", + "Date" : "Sun, 06 Mar 2022 07:12:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d5f2c1da-2cfd-42c8-8b1d-9e495ba22800", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041845Z:f6cc0b74-9d29-488a-9148-f5f9d60e5e65", + "client-request-id" : "2156db9f-b26e-4f61-b1e7-71b3e903c0f7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071219Z:b00f670d-7a98-4d51-abb9-c20436bf6ee2", "Expires" : "-1", - "x-ms-request-id" : "754ac8ab-6dc0-44c1-84cf-5aacfae4b64b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "2119cbc0-f245-437e-976a-47ba01c63705", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8faeba12-9f35-4798-87b6-f151ff53396b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "07938111-7781-4cfc-9d47-0427752cbee8", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "x-ms-ratelimit-remaining-subscription-reads" : "11933", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bfcda5a3-620d-4f44-b7cd-d2bd1d67e8df", - "Date" : "Mon, 23 Aug 2021 04:18:47 GMT", + "x-ms-correlation-request-id" : "0596520c-84a4-4961-ad0a-cd129f7c29cc", + "Date" : "Sun, 06 Mar 2022 07:12:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8faeba12-9f35-4798-87b6-f151ff53396b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041847Z:bfcda5a3-620d-4f44-b7cd-d2bd1d67e8df", + "client-request-id" : "07938111-7781-4cfc-9d47-0427752cbee8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071220Z:0596520c-84a4-4961-ad0a-cd129f7c29cc", "Expires" : "-1", - "x-ms-request-id" : "8a666e72-5660-4c5c-ac3e-79446ea299ab", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "2289d79c-37e6-4e4c-aba5-37be88178912", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dbb0e65f-7784-4a98-ae44-061eeb8f5d6b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b4c2c525-2ca1-4cad-9181-4e984435eeb4", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "x-ms-ratelimit-remaining-subscription-reads" : "11940", "StatusCode" : "200", - "x-ms-correlation-request-id" : "fdd93aa9-39bf-422c-9cb5-3d15a3144dc9", - "Date" : "Mon, 23 Aug 2021 04:19:18 GMT", + "x-ms-correlation-request-id" : "1b929dba-b3ad-47f6-8ea4-23652a049449", + "Date" : "Sun, 06 Mar 2022 07:12:51 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "dbb0e65f-7784-4a98-ae44-061eeb8f5d6b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041918Z:fdd93aa9-39bf-422c-9cb5-3d15a3144dc9", + "client-request-id" : "b4c2c525-2ca1-4cad-9181-4e984435eeb4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071251Z:1b929dba-b3ad-47f6-8ea4-23652a049449", "Expires" : "-1", - "x-ms-request-id" : "45b8232f-50db-457f-b748-0fb059740d6c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "2e79f693-8ef5-4976-bfc8-71e6d36a87e8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "eddd870b-313b-4f03-b7a8-abb1266c26d3", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "06725a36-7adc-4bb7-8fa3-1302e2e91cd6", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", + "x-ms-ratelimit-remaining-subscription-reads" : "11938", "StatusCode" : "200", - "x-ms-correlation-request-id" : "349924b9-6331-4cfb-a016-83c7acbef46b", - "Date" : "Mon, 23 Aug 2021 04:19:19 GMT", + "x-ms-correlation-request-id" : "1b2592db-2971-436c-9b7d-8dad96837f60", + "Date" : "Sun, 06 Mar 2022 07:12:52 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "eddd870b-313b-4f03-b7a8-abb1266c26d3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041920Z:349924b9-6331-4cfb-a016-83c7acbef46b", + "client-request-id" : "06725a36-7adc-4bb7-8fa3-1302e2e91cd6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071253Z:1b2592db-2971-436c-9b7d-8dad96837f60", "Expires" : "-1", - "x-ms-request-id" : "66effdef-9d4f-4bf5-ae5e-91fb9e11c1f2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "402b5b89-f1f6-420e-831b-b5eb1524bcf0", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa0dafd2-b673-4bae-a651-a47ad979b6db", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bdeeaaaf-8e3b-42ab-9213-51cf96dfa50f", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", + "x-ms-ratelimit-remaining-subscription-reads" : "11934", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1de463eb-7aae-4c03-bfb4-12e651953907", - "Date" : "Mon, 23 Aug 2021 04:19:50 GMT", + "x-ms-correlation-request-id" : "6c923bbb-2514-47ae-a316-f255030e5430", + "Date" : "Sun, 06 Mar 2022 07:13:24 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "fa0dafd2-b673-4bae-a651-a47ad979b6db", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041951Z:1de463eb-7aae-4c03-bfb4-12e651953907", + "client-request-id" : "bdeeaaaf-8e3b-42ab-9213-51cf96dfa50f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071324Z:6c923bbb-2514-47ae-a316-f255030e5430", "Expires" : "-1", - "x-ms-request-id" : "0b998ef1-153a-4975-8f5f-6ec6f50e1d16", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "89ff7582-1bb7-43ac-afd5-b513ea01365e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc27cc95-e818-4e91-a7eb-46b982fb0281", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "22334d8e-e6b2-4b08-ac02-242d3a4f2a24", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "x-ms-ratelimit-remaining-subscription-reads" : "11932", "StatusCode" : "200", - "x-ms-correlation-request-id" : "51692638-ed33-4555-80ef-da8974455ebc", - "Date" : "Mon, 23 Aug 2021 04:19:55 GMT", + "x-ms-correlation-request-id" : "2b051007-033a-4cb9-b602-76aa118626d4", + "Date" : "Sun, 06 Mar 2022 07:13:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cc27cc95-e818-4e91-a7eb-46b982fb0281", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T041955Z:51692638-ed33-4555-80ef-da8974455ebc", + "client-request-id" : "22334d8e-e6b2-4b08-ac02-242d3a4f2a24", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071325Z:2b051007-033a-4cb9-b602-76aa118626d4", "Expires" : "-1", - "x-ms-request-id" : "dfed394d-a7a7-4a39-bf94-5d1e176f3f94", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "111ae167-f2fc-467d-9006-68e57ae4f4fe", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dcf27dbc-81a2-439d-a68b-63138ce73d39", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "cf56d4ff-dcac-48cd-b829-88402ac7cf55", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "x-ms-ratelimit-remaining-subscription-reads" : "11935", "StatusCode" : "200", - "x-ms-correlation-request-id" : "786d78e0-6d69-4037-856b-ceb1baa0f4c3", - "Date" : "Mon, 23 Aug 2021 04:20:25 GMT", + "x-ms-correlation-request-id" : "d2bde2ed-58f4-4ff6-bcc2-419cbb8dea38", + "Date" : "Sun, 06 Mar 2022 07:13:56 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "dcf27dbc-81a2-439d-a68b-63138ce73d39", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042026Z:786d78e0-6d69-4037-856b-ceb1baa0f4c3", + "client-request-id" : "cf56d4ff-dcac-48cd-b829-88402ac7cf55", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071356Z:d2bde2ed-58f4-4ff6-bcc2-419cbb8dea38", "Expires" : "-1", - "x-ms-request-id" : "e11cdf76-0e93-47a2-891d-efb5942774c4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "2244a5c2-b8f6-4811-bfb3-915d32f3af7c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2ddc67f-82bb-4eb7-845d-68ffa545d7f7", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "429cacd8-483d-4e09-80e4-3c741007c1bd", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "x-ms-ratelimit-remaining-subscription-reads" : "11932", "StatusCode" : "200", - "x-ms-correlation-request-id" : "49a48b3e-01d4-4e2b-a085-a822c19e0750", - "Date" : "Mon, 23 Aug 2021 04:20:26 GMT", + "x-ms-correlation-request-id" : "c41ef8aa-f094-408a-ab33-d736d81db897", + "Date" : "Sun, 06 Mar 2022 07:13:57 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f2ddc67f-82bb-4eb7-845d-68ffa545d7f7", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042027Z:49a48b3e-01d4-4e2b-a085-a822c19e0750", + "client-request-id" : "429cacd8-483d-4e09-80e4-3c741007c1bd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071357Z:c41ef8aa-f094-408a-ab33-d736d81db897", "Expires" : "-1", - "x-ms-request-id" : "10f0fa8d-a609-48ac-907c-e18c61ddea9d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "babc034c-a537-47b6-86ad-650915f80425", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "48855084-9d8f-4f7a-8940-88c82c59c582", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5857f727-4e67-48b2-bb92-59ad0061fb88", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11939", "StatusCode" : "200", - "x-ms-correlation-request-id" : "b1e6e4c3-bf64-431e-b678-1b71606d5b2d", - "Date" : "Mon, 23 Aug 2021 04:20:56 GMT", + "x-ms-correlation-request-id" : "cbd9e935-bc72-483c-9783-ffd62c1aca7d", + "Date" : "Sun, 06 Mar 2022 07:14:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "48855084-9d8f-4f7a-8940-88c82c59c582", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042057Z:b1e6e4c3-bf64-431e-b678-1b71606d5b2d", + "client-request-id" : "5857f727-4e67-48b2-bb92-59ad0061fb88", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071429Z:cbd9e935-bc72-483c-9783-ffd62c1aca7d", "Expires" : "-1", - "x-ms-request-id" : "93958950-2865-46a2-8f55-5d02e54184f8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "c8ac132e-8123-452e-97b7-ae65dafca86e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8097520c-52c4-46ff-b544-8c834c70d549", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7540b05c-baf1-4d19-a557-c5f72ea8b0f2", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11937", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f5587ef9-7405-4f07-87f7-4ddbf834df07", - "Date" : "Mon, 23 Aug 2021 04:20:57 GMT", + "x-ms-correlation-request-id" : "f5bbbef9-8819-46ca-bdde-0ff8c32925d7", + "Date" : "Sun, 06 Mar 2022 07:14:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8097520c-52c4-46ff-b544-8c834c70d549", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042058Z:f5587ef9-7405-4f07-87f7-4ddbf834df07", + "client-request-id" : "7540b05c-baf1-4d19-a557-c5f72ea8b0f2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071430Z:f5bbbef9-8819-46ca-bdde-0ff8c32925d7", "Expires" : "-1", - "x-ms-request-id" : "8057c8b5-1c38-4ed3-b556-ad8e5e3f7dea", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "36eb5a05-d2e6-41e7-bdf8-1817e0803137", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8adf6855-93f4-4d5a-bd32-14fbb535d016", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d807779e-1158-4d69-8478-d4ef2f6d5197", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "x-ms-ratelimit-remaining-subscription-reads" : "11933", "StatusCode" : "200", - "x-ms-correlation-request-id" : "eac78a96-e80e-4c54-9c00-f4f2c2436703", - "Date" : "Mon, 23 Aug 2021 04:21:27 GMT", + "x-ms-correlation-request-id" : "24728412-1e7a-4e8d-93d4-90d9d26d2ff0", + "Date" : "Sun, 06 Mar 2022 07:15:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8adf6855-93f4-4d5a-bd32-14fbb535d016", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042128Z:eac78a96-e80e-4c54-9c00-f4f2c2436703", + "client-request-id" : "d807779e-1158-4d69-8478-d4ef2f6d5197", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071501Z:24728412-1e7a-4e8d-93d4-90d9d26d2ff0", "Expires" : "-1", - "x-ms-request-id" : "f992a48b-ad64-4de8-a268-97fd16fa93f1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "fc7a158a-2303-4b46-bb56-54f80297e8ef", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad5e69b0-7d91-4e58-9a48-f2adb0e462ea", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4bd40beb-3802-475f-9fb7-07a5365c679e", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11931", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1c6eea23-def7-4bd6-945b-4579c14e8237", - "Date" : "Mon, 23 Aug 2021 04:21:29 GMT", + "x-ms-correlation-request-id" : "247f5c51-157a-4f7d-9e6a-fedda7750cb5", + "Date" : "Sun, 06 Mar 2022 07:15:02 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ad5e69b0-7d91-4e58-9a48-f2adb0e462ea", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042130Z:1c6eea23-def7-4bd6-945b-4579c14e8237", + "client-request-id" : "4bd40beb-3802-475f-9fb7-07a5365c679e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071502Z:247f5c51-157a-4f7d-9e6a-fedda7750cb5", "Expires" : "-1", - "x-ms-request-id" : "089450f0-5fe0-4ea3-b88a-e7a25cf522a8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "ca150925-6d88-4b8e-847c-d9946638dd83", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0edb5cd-97e9-4732-95a1-8fa423d6da43", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "10c287c4-f582-43ac-9a87-851c6722d7ed", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "x-ms-ratelimit-remaining-subscription-reads" : "11934", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bfe47dbe-ff2d-4fd9-8a6e-2d015424781f", - "Date" : "Mon, 23 Aug 2021 04:22:01 GMT", + "x-ms-correlation-request-id" : "3c5312ee-cd7d-4a4b-acc5-721432fd27e3", + "Date" : "Sun, 06 Mar 2022 07:15:33 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c0edb5cd-97e9-4732-95a1-8fa423d6da43", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042201Z:bfe47dbe-ff2d-4fd9-8a6e-2d015424781f", + "client-request-id" : "10c287c4-f582-43ac-9a87-851c6722d7ed", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071533Z:3c5312ee-cd7d-4a4b-acc5-721432fd27e3", "Expires" : "-1", - "x-ms-request-id" : "250820b5-c51a-4399-9bef-773dd54855b7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "945b2599-c072-4eab-b409-04da1f2837f1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dab30695-ba0b-43f7-80de-40357b20aea3", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "cd47e650-24c3-4132-b706-a9f311ac3014", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11931", "StatusCode" : "200", - "x-ms-correlation-request-id" : "7301ec36-963f-4fc9-a120-1f19e8d14d78", - "Date" : "Mon, 23 Aug 2021 04:22:01 GMT", + "x-ms-correlation-request-id" : "e7b048c8-ff20-4d00-8f65-8e0d92565fc0", + "Date" : "Sun, 06 Mar 2022 07:15:34 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "dab30695-ba0b-43f7-80de-40357b20aea3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042201Z:7301ec36-963f-4fc9-a120-1f19e8d14d78", + "client-request-id" : "cd47e650-24c3-4132-b706-a9f311ac3014", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071534Z:e7b048c8-ff20-4d00-8f65-8e0d92565fc0", "Expires" : "-1", - "x-ms-request-id" : "0df1fe0a-7b9b-426c-9307-c68456041b4e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "93ab4fcb-8993-4aee-96fa-5d6ec9a24b60", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c33fa535-3374-4eb1-8bea-b1138830775a", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4ac49295-4639-4d4f-aa54-18e9e3656f3c", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "976", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "x-ms-ratelimit-remaining-subscription-reads" : "11938", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d2e4b1aa-747e-4834-bdec-e0e3731d6fc2", - "Date" : "Mon, 23 Aug 2021 04:22:32 GMT", + "x-ms-correlation-request-id" : "bd06cca3-bab6-4ae1-9d9e-9cdb09a27e75", + "Date" : "Sun, 06 Mar 2022 07:16:06 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c33fa535-3374-4eb1-8bea-b1138830775a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042232Z:d2e4b1aa-747e-4834-bdec-e0e3731d6fc2", + "client-request-id" : "4ac49295-4639-4d4f-aa54-18e9e3656f3c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071606Z:bd06cca3-bab6-4ae1-9d9e-9cdb09a27e75", "Expires" : "-1", - "x-ms-request-id" : "2b39c214-6fa6-4b24-aec8-da9fcf86a389", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "9da64452-b1fa-4ddd-928f-b2e680555764", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f7e81ee-e613-49f7-9ef0-0e4e272ee772", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "501eaaad-c8b5-4cbe-9743-84075a7cf103", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", + "x-ms-ratelimit-remaining-subscription-reads" : "11936", "StatusCode" : "200", - "x-ms-correlation-request-id" : "74bb1196-9da4-4ae1-8518-350241bbb860", - "Date" : "Mon, 23 Aug 2021 04:22:34 GMT", + "x-ms-correlation-request-id" : "7710e8ce-59c7-4ce1-ad6f-7a029856d9a3", + "Date" : "Sun, 06 Mar 2022 07:16:06 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "6f7e81ee-e613-49f7-9ef0-0e4e272ee772", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042234Z:74bb1196-9da4-4ae1-8518-350241bbb860", + "client-request-id" : "501eaaad-c8b5-4cbe-9743-84075a7cf103", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071607Z:7710e8ce-59c7-4ce1-ad6f-7a029856d9a3", "Expires" : "-1", - "x-ms-request-id" : "a15d7bc9-2dbc-4c3a-af1d-9d3ce5983bba", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "b5a085d7-4063-43ea-89a5-59af5d546400", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd790806-3588-41fe-b153-1de3a3565ebb", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2e62116f-5102-44a8-ba66-f93f195ff8df", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "978", + "content-length" : "979", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "x-ms-ratelimit-remaining-subscription-reads" : "11932", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a8dcd0af-b599-46a7-8408-415e85d9789f", - "Date" : "Mon, 23 Aug 2021 04:23:04 GMT", + "x-ms-correlation-request-id" : "1475737e-b192-43e6-9b8e-9ab31e80213c", + "Date" : "Sun, 06 Mar 2022 07:16:38 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cd790806-3588-41fe-b153-1de3a3565ebb", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042304Z:a8dcd0af-b599-46a7-8408-415e85d9789f", + "client-request-id" : "2e62116f-5102-44a8-ba66-f93f195ff8df", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071638Z:1475737e-b192-43e6-9b8e-9ab31e80213c", "Expires" : "-1", - "x-ms-request-id" : "f499185d-d3a6-46bc-865e-e6cabf1128fe", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "b9a2344b-3d5c-40df-bfa0-d3d6eaa0eb90", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "769ebb24-2442-419c-b956-9d8924c7da50", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bda48216-f58d-4499-a77b-6b2b08ca766e", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", + "x-ms-ratelimit-remaining-subscription-reads" : "11930", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "1ad99111-8008-4247-9594-fb607c9e7627", + "Date" : "Sun, 06 Mar 2022 07:16:39 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "bda48216-f58d-4499-a77b-6b2b08ca766e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071639Z:1ad99111-8008-4247-9594-fb607c9e7627", + "Expires" : "-1", + "x-ms-request-id" : "e070a89f-5985-4c70-8009-06bd3117bfcd", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "58862356-7fce-4b85-be1e-3cab0842eb70", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "979", + "Server" : "Microsoft-HTTPAPI/2.0", + "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" : "a51280d5-fa4f-4ebb-b951-f30c354697b0", + "Date" : "Sun, 06 Mar 2022 07:17:10 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "58862356-7fce-4b85-be1e-3cab0842eb70", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071710Z:a51280d5-fa4f-4ebb-b951-f30c354697b0", + "Expires" : "-1", + "x-ms-request-id" : "16429adc-4af8-46b1-9cda-1e0550439749", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "648b30c6-d636-4b75-a259-110f36c469de", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "835", + "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", + "x-ms-correlation-request-id" : "7136f4ba-caf7-44fe-8eeb-3838ab289a3c", + "Date" : "Sun, 06 Mar 2022 07:17:11 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "648b30c6-d636-4b75-a259-110f36c469de", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071712Z:7136f4ba-caf7-44fe-8eeb-3838ab289a3c", + "Expires" : "-1", + "x-ms-request-id" : "5db7854a-4764-4167-b9f4-19e6cec16325", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "52317264-4250-4804-a47d-b216cf1b2762", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "979", + "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", + "x-ms-correlation-request-id" : "c5411ad8-1b4c-457c-b5e9-84bdb01deaa0", + "Date" : "Sun, 06 Mar 2022 07:17:42 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "52317264-4250-4804-a47d-b216cf1b2762", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071743Z:c5411ad8-1b4c-457c-b5e9-84bdb01deaa0", + "Expires" : "-1", + "x-ms-request-id" : "b35d0888-7928-4ba5-ae15-e7fdd84abfdc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0f3a0f83-972a-4cbf-8a2e-5e22a6ac994d", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "835", + "Server" : "Microsoft-HTTPAPI/2.0", + "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" : "8bc51a6b-9885-4626-abef-c74254fd950c", + "Date" : "Sun, 06 Mar 2022 07:17:43 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "0f3a0f83-972a-4cbf-8a2e-5e22a6ac994d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071744Z:8bc51a6b-9885-4626-abef-c74254fd950c", + "Expires" : "-1", + "x-ms-request-id" : "3bfeb06c-ae25-4c35-a72e-1bb0556b2297", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5bca7959-d0e7-47f3-bbd3-cc9ce5d0077e", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "979", + "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", + "x-ms-correlation-request-id" : "d44bfb5a-02c5-4a98-a782-6448e9ef364d", + "Date" : "Sun, 06 Mar 2022 07:18:14 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "5bca7959-d0e7-47f3-bbd3-cc9ce5d0077e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071815Z:d44bfb5a-02c5-4a98-a782-6448e9ef364d", + "Expires" : "-1", + "x-ms-request-id" : "1b42bcbd-9602-4aa5-b8b7-9efd69bc4935", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "94343529-148a-4d51-ba45-2911b160f62d", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "835", + "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", + "x-ms-correlation-request-id" : "c150f58e-e2e8-461b-839f-3da627b40838", + "Date" : "Sun, 06 Mar 2022 07:18:16 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "94343529-148a-4d51-ba45-2911b160f62d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071817Z:c150f58e-e2e8-461b-839f-3da627b40838", + "Expires" : "-1", + "x-ms-request-id" : "8f1ae5d6-1c7a-456b-b0ef-4a371d9c6c45", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1d9d9b2f-4622-4635-b4c1-9664fa65c52d", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "979", + "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", + "x-ms-correlation-request-id" : "4cef2bf0-22a0-4a69-b3bb-b798ffaf0b95", + "Date" : "Sun, 06 Mar 2022 07:18:47 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "1d9d9b2f-4622-4635-b4c1-9664fa65c52d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071848Z:4cef2bf0-22a0-4a69-b3bb-b798ffaf0b95", + "Expires" : "-1", + "x-ms-request-id" : "f5a2ef01-33bb-42ce-9bfc-f67f0d9f451e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f99d842f-cf4b-4aeb-9a97-31a3a19c2b0c", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "835", + "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", + "x-ms-correlation-request-id" : "da524fee-74f7-4f48-8f88-701016fa0b2f", + "Date" : "Sun, 06 Mar 2022 07:18:48 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "f99d842f-cf4b-4aeb-9a97-31a3a19c2b0c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071849Z:da524fee-74f7-4f48-8f88-701016fa0b2f", + "Expires" : "-1", + "x-ms-request-id" : "fcd95df6-ff44-4bfa-8d29-54b328c59b57", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "639c9afc-60db-43e1-8840-7a4a4341965e", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "979", + "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", + "x-ms-correlation-request-id" : "de494bd2-71ec-410e-94e8-7566ad5ec815", + "Date" : "Sun, 06 Mar 2022 07:19:20 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "639c9afc-60db-43e1-8840-7a4a4341965e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071920Z:de494bd2-71ec-410e-94e8-7566ad5ec815", + "Expires" : "-1", + "x-ms-request-id" : "201247ba-fe6a-4e8d-9c55-561c59c4ef99", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "51ba1702-3ddb-46c1-b5b7-4039358868b1", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "835", + "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", + "x-ms-correlation-request-id" : "c830019c-3121-4e8e-8ace-07396114606e", + "Date" : "Sun, 06 Mar 2022 07:19:21 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "51ba1702-3ddb-46c1-b5b7-4039358868b1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071921Z:c830019c-3121-4e8e-8ace-07396114606e", + "Expires" : "-1", + "x-ms-request-id" : "1f90a9bd-6bda-4dac-9195-a159c2327aab", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "fb64c40d-a7e7-4612-9a11-987b8786756c", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "979", + "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", + "x-ms-correlation-request-id" : "276414ca-c92b-4aae-a61d-83bb6053c22b", + "Date" : "Sun, 06 Mar 2022 07:19:52 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "fb64c40d-a7e7-4612-9a11-987b8786756c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071952Z:276414ca-c92b-4aae-a61d-83bb6053c22b", + "Expires" : "-1", + "x-ms-request-id" : "b650d1df-5341-4d88-af9f-31400a7a690f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "55b90828-109c-47d5-af30-a46a72ae3952", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "835", + "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", + "x-ms-correlation-request-id" : "238f459c-e971-4c32-9c1d-929fa03947d4", + "Date" : "Sun, 06 Mar 2022 07:19:53 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "55b90828-109c-47d5-af30-a46a72ae3952", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T071953Z:238f459c-e971-4c32-9c1d-929fa03947d4", + "Expires" : "-1", + "x-ms-request-id" : "d19bea66-8151-43b7-ae2d-fd8001197c2b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3a1d882c-8e80-4bb4-839b-8796629e9991", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "979", + "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", + "x-ms-correlation-request-id" : "66fb3ea1-2cf6-4fb5-8d6c-b48beee921d6", + "Date" : "Sun, 06 Mar 2022 07:20:24 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "3a1d882c-8e80-4bb4-839b-8796629e9991", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072025Z:66fb3ea1-2cf6-4fb5-8d6c-b48beee921d6", + "Expires" : "-1", + "x-ms-request-id" : "539138f2-42cc-4ed7-843d-f9af5e8a5367", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f1d67c0d-7b48-4d93-a656-50a92c8bc8a4", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "835", + "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", + "x-ms-correlation-request-id" : "16fa90d0-ddc8-4a35-a8d4-d1b8273e380d", + "Date" : "Sun, 06 Mar 2022 07:20:25 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "f1d67c0d-7b48-4d93-a656-50a92c8bc8a4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072026Z:16fa90d0-ddc8-4a35-a8d4-d1b8273e380d", + "Expires" : "-1", + "x-ms-request-id" : "6b40fae2-5f3f-4e2c-8dcc-2980619c5792", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0e3c5d37-65ec-4ba6-9b67-b60e0744c73c", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "979", + "Server" : "Microsoft-HTTPAPI/2.0", + "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" : "2de9588f-9c17-47a0-b7c2-2d6de4157a6f", + "Date" : "Sun, 06 Mar 2022 07:20:57 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "0e3c5d37-65ec-4ba6-9b67-b60e0744c73c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072057Z:2de9588f-9c17-47a0-b7c2-2d6de4157a6f", + "Expires" : "-1", + "x-ms-request-id" : "b9056043-03b0-409d-835a-dd69c240d34e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "53024fe5-0ccf-4ffb-a87f-424febe54399", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "835", + "Server" : "Microsoft-HTTPAPI/2.0", + "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" : "e4f7c34b-b6c9-437a-a4f8-175569ab4896", + "Date" : "Sun, 06 Mar 2022 07:20:58 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "53024fe5-0ccf-4ffb-a87f-424febe54399", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072059Z:e4f7c34b-b6c9-437a-a4f8-175569ab4896", + "Expires" : "-1", + "x-ms-request-id" : "8ba0b240-64af-4d2d-9dc8-cf2fc314343f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8d8c5451-7226-481d-899e-24a15e342d69", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "981", + "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", + "x-ms-correlation-request-id" : "75ae6e0f-6953-4865-a4e8-9052a0710d88", + "Date" : "Sun, 06 Mar 2022 07:21:29 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "8d8c5451-7226-481d-899e-24a15e342d69", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072130Z:75ae6e0f-6953-4865-a4e8-9052a0710d88", + "Expires" : "-1", + "x-ms-request-id" : "878ed4bb-7b9d-4635-b702-76120906aad6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Unlinking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2ddec5f4-a893-4345-a246-e13905cb36f0", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "835", + "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", + "x-ms-correlation-request-id" : "9384ab3c-fe16-4c02-868b-b9d7de7d2d73", + "Date" : "Sun, 06 Mar 2022 07:21:31 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "2ddec5f4-a893-4345-a246-e13905cb36f0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072131Z:9384ab3c-fe16-4c02-868b-b9d7de7d2d73", + "Expires" : "-1", + "x-ms-request-id" : "680fbfc5-442f-44df-9c6c-1d4be201604f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0d80389e-88fb-487c-b784-29f04e6159cb", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "981", + "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", + "x-ms-correlation-request-id" : "bacda28b-2c87-4120-ba0b-18a3153695c9", + "Date" : "Sun, 06 Mar 2022 07:22:02 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "0d80389e-88fb-487c-b784-29f04e6159cb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072202Z:bacda28b-2c87-4120-ba0b-18a3153695c9", + "Expires" : "-1", + "x-ms-request-id" : "e33d1a44-2861-40ac-8b40-c7819748894d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Unlinking\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second/linkedServers/javacsmrc16532Third\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5629432d-3101-4dac-932e-1bfa3675b701", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "835", + "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", + "x-ms-correlation-request-id" : "5e374b4c-c7cd-4873-8302-a8d385275e05", + "Date" : "Sun, 06 Mar 2022 07:22:02 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "5629432d-3101-4dac-932e-1bfa3675b701", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072203Z:5e374b4c-c7cd-4873-8302-a8d385275e05", + "Expires" : "-1", + "x-ms-request-id" : "16d04da0-96f3-4be8-a0f4-fcb9efb5deea", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3fbabddc-8533-4012-895f-303d589fd601", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "798", + "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", - "x-ms-correlation-request-id" : "ab5b97db-7b10-4c10-9fed-1d22cd46f0ad", - "Date" : "Mon, 23 Aug 2021 04:23:05 GMT", + "x-ms-correlation-request-id" : "497859dd-ff84-4767-a01a-184f636091b0", + "Date" : "Sun, 06 Mar 2022 07:22:34 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "769ebb24-2442-419c-b956-9d8924c7da50", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042306Z:ab5b97db-7b10-4c10-9fed-1d22cd46f0ad", + "client-request-id" : "3fbabddc-8533-4012-895f-303d589fd601", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072235Z:497859dd-ff84-4767-a01a-184f636091b0", "Expires" : "-1", - "x-ms-request-id" : "6d885c4b-9339-4307-8b93-34f58dfbad3b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "e07114c2-dcc2-4e59-993e-24d3762f406f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5626ea88-9283-4afb-b312-e76e7024b720", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "835", + "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", + "x-ms-correlation-request-id" : "04204676-2fdc-4a1f-96fe-0d5a304b9cb3", + "Date" : "Sun, 06 Mar 2022 07:22:35 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "5626ea88-9283-4afb-b312-e76e7024b720", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072236Z:04204676-2fdc-4a1f-96fe-0d5a304b9cb3", + "Expires" : "-1", + "x-ms-request-id" : "21672cbb-5580-47d3-9ab1-6ec4e263f081", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8db45a0-25a5-44c0-9b87-b5c6ad755ca3", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "fd5389a7-4f68-4194-bd15-a41ebd6e246d", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f8ec8ca5-6932-4e08-8460-b4904fb5be28", - "Date" : "Mon, 23 Aug 2021 04:23:10 GMT", + "x-ms-correlation-request-id" : "e7e47f49-b60f-47d6-ba0c-e6a40857b6d1", + "Date" : "Sun, 06 Mar 2022 07:22:42 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d8db45a0-25a5-44c0-9b87-b5c6ad755ca3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042311Z:f8ec8ca5-6932-4e08-8460-b4904fb5be28", + "client-request-id" : "fd5389a7-4f68-4194-bd15-a41ebd6e246d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072243Z:e7e47f49-b60f-47d6-ba0c-e6a40857b6d1", "Expires" : "-1", - "x-ms-request-id" : "3f6d09cb-8816-463a-8663-635fe26857fb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "2164181b-5d6a-447d-b26e-eae68b970cea", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/patchSchedules/default?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/patchSchedules/default?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bff67c79-2120-4c39-a9a1-59968d26baa6", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "24dbe7c7-8d90-424d-839a-271e5584743a", "Content-Type" : "application/json" }, "Response" : { "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ace4c8e-562f-4c4c-8300-823038c0a459", - "Date" : "Mon, 23 Aug 2021 04:23:12 GMT", + "x-ms-correlation-request-id" : "b7581c00-2047-4b62-b0fe-5b4a223dd56e", + "Date" : "Sun, 06 Mar 2022 07:22:44 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "bff67c79-2120-4c39-a9a1-59968d26baa6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042312Z:6ace4c8e-562f-4c4c-8300-823038c0a459", + "client-request-id" : "24dbe7c7-8d90-424d-839a-271e5584743a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072245Z:b7581c00-2047-4b62-b0fe-5b4a223dd56e", "Expires" : "-1", - "x-ms-request-id" : "6ca654bf-b58b-4079-82db-a902e6aa44eb" + "x-ms-request-id" : "2c56de12-453c-41e0-ae9f-68582d325b48" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "07acf5bb-4c05-4eb1-9b98-9a191007d4e8", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "704822bd-b4fc-4ca0-8c15-91cc09017edb", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "x-ms-ratelimit-remaining-subscription-reads" : "11929", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ab1fa064-85d2-429d-aa5d-07bdc966a7f7", - "Date" : "Mon, 23 Aug 2021 04:23:12 GMT", + "x-ms-correlation-request-id" : "4b872c10-7d75-41b9-b870-2dded0d70537", + "Date" : "Sun, 06 Mar 2022 07:22:45 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "07acf5bb-4c05-4eb1-9b98-9a191007d4e8", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042313Z:ab1fa064-85d2-429d-aa5d-07bdc966a7f7", + "client-request-id" : "704822bd-b4fc-4ca0-8c15-91cc09017edb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072246Z:4b872c10-7d75-41b9-b870-2dded0d70537", "Expires" : "-1", - "x-ms-request-id" : "c09d4239-96ca-425a-93d5-8f5a95a0fe28", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third\",\"location\":\"Central US\",\"name\":\"javacsmrc72809Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "1b5c7e12-6437-41f4-bd22-9436b227b557", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/firewallRules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "825509db-dfab-4a17-a515-3b0c539281b0", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "38d98da6-2621-4d47-88c8-0258e7e12587", "Content-Type" : "application/json" }, "Response" : { @@ -4870,27 +5542,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", + "x-ms-ratelimit-remaining-subscription-reads" : "11926", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f175d09e-9123-4697-ae85-b9ba00a8007d", - "Date" : "Mon, 23 Aug 2021 04:23:13 GMT", + "x-ms-correlation-request-id" : "89daa61d-5718-4528-85f1-31670fc0706a", + "Date" : "Sun, 06 Mar 2022 07:22:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "825509db-dfab-4a17-a515-3b0c539281b0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042313Z:f175d09e-9123-4697-ae85-b9ba00a8007d", + "client-request-id" : "38d98da6-2621-4d47-88c8-0258e7e12587", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072246Z:89daa61d-5718-4528-85f1-31670fc0706a", "Expires" : "-1", - "x-ms-request-id" : "d4282488-3f9c-4703-b700-bdb51205fb72", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/firewallRules/rule1\",\"name\":\"javacsmrc72809Third/rule1\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Third/firewallRules/rule2\",\"name\":\"javacsmrc72809Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}}]}", + "x-ms-request-id" : "636fe664-8ac1-45bb-b2f5-5bd8c23c4e4f", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/firewallRules/rule1\",\"name\":\"javacsmrc16532Third/rule1\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third/firewallRules/rule2\",\"name\":\"javacsmrc16532Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2fc85d2-5454-4e82-95d6-00ebb28d0e28", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "468c67a3-d3e5-4697-8824-6135b7f23c29", "Content-Type" : "application/json" }, "Response" : { @@ -4899,27 +5571,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "x-ms-ratelimit-remaining-subscription-reads" : "11933", "StatusCode" : "404", - "x-ms-correlation-request-id" : "5eb2fcb3-8945-41b2-b555-aa4e888fb147", - "Date" : "Mon, 23 Aug 2021 04:23:13 GMT", + "x-ms-correlation-request-id" : "0d3fdeb3-c0af-4d00-90f8-328f5c0d5b66", + "Date" : "Sun, 06 Mar 2022 07:22:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "b2fc85d2-5454-4e82-95d6-00ebb28d0e28", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042313Z:5eb2fcb3-8945-41b2-b555-aa4e888fb147", + "client-request-id" : "468c67a3-d3e5-4697-8824-6135b7f23c29", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072247Z:0d3fdeb3-c0af-4d00-90f8-328f5c0d5b66", "Expires" : "-1", - "x-ms-request-id" : "08c52b30-e837-404a-832b-5554aa9d3818", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc72809Third'.\\r\\nRequestID=08c52b30-e837-404a-832b-5554aa9d3818\",\"target\":null}}", + "x-ms-request-id" : "b76465ad-40ab-4ffb-8c34-a2046c97c401", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc16532Third'.\\r\\nRequestID=b76465ad-40ab-4ffb-8c34-a2046c97c401\",\"target\":null}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second/firewallRules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b3ecd29c-a2ad-421c-b448-5ad2dcdeac55", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "065aaf30-f296-47a7-9064-9feb3d1980be", "Content-Type" : "application/json" }, "Response" : { @@ -4928,86 +5600,86 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "x-ms-ratelimit-remaining-subscription-reads" : "11931", "StatusCode" : "200", - "x-ms-correlation-request-id" : "fa0fc7d0-40f2-4e4a-a892-931a32893de0", - "Date" : "Mon, 23 Aug 2021 04:23:14 GMT", + "x-ms-correlation-request-id" : "8df38b83-e650-47f5-a923-9fd82b2145bf", + "Date" : "Sun, 06 Mar 2022 07:22:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "b3ecd29c-a2ad-421c-b448-5ad2dcdeac55", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042314Z:fa0fc7d0-40f2-4e4a-a892-931a32893de0", + "client-request-id" : "065aaf30-f296-47a7-9064-9feb3d1980be", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072248Z:8df38b83-e650-47f5-a923-9fd82b2145bf", "Expires" : "-1", - "x-ms-request-id" : "0c211e33-9396-4e62-bed3-4e4432aba93e", + "x-ms-request-id" : "727c2e08-54bb-4c7c-a2b3-e2f7cfc62b02", "Body" : "{\"value\":[]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e15c615d-b94b-433e-9dfe-ce2fa126a63b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "52a3b0fd-4c50-4914-a83a-173b25ef9e95", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "978", + "content-length" : "798", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "x-ms-correlation-request-id" : "7dc6bf30-d10e-4a92-b9a2-472808039302", - "Date" : "Mon, 23 Aug 2021 04:23:17 GMT", + "x-ms-correlation-request-id" : "569ccc4b-a94d-47d4-977e-892cc094887a", + "Date" : "Sun, 06 Mar 2022 07:22:52 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e15c615d-b94b-433e-9dfe-ce2fa126a63b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042317Z:7dc6bf30-d10e-4a92-b9a2-472808039302", + "client-request-id" : "52a3b0fd-4c50-4914-a83a-173b25ef9e95", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072252Z:569ccc4b-a94d-47d4-977e-892cc094887a", "Expires" : "-1", - "x-ms-request-id" : "1077f51a-5042-4c21-a30c-96216ed1d7de", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second/linkedServers/javacsmrc72809Third\"}]}}", + "x-ms-request-id" : "39c53539-51c2-4e58-bc71-9c8dcaf81d18", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second/firewallRules/rulesmhule?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second/firewallRules/rulesmhule?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3acbd579-12ec-4d23-8503-2eda1d4721e6", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "12948cbd-e8ec-4e8b-8e74-54dbe7efc464", "Content-Type" : "application/json" }, "Response" : { "content-length" : "323", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "ee5fdcc4-2da4-4733-b817-3bdaa993cbe7", - "Date" : "Mon, 23 Aug 2021 04:23:18 GMT", + "x-ms-correlation-request-id" : "f42a1754-f9f5-4d0e-92bc-189979e0c0cf", + "Date" : "Sun, 06 Mar 2022 07:22:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "3acbd579-12ec-4d23-8503-2eda1d4721e6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042318Z:ee5fdcc4-2da4-4733-b817-3bdaa993cbe7", + "client-request-id" : "12948cbd-e8ec-4e8b-8e74-54dbe7efc464", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072254Z:f42a1754-f9f5-4d0e-92bc-189979e0c0cf", "Expires" : "-1", - "x-ms-request-id" : "99128365-ba2c-4aaa-8f6a-6a763a98509d", - "Body" : "{\"properties\":{\"startIP\":\"192.168.1.10\",\"endIP\":\"192.168.1.20\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second/firewallRules/rulesmhule\",\"name\":\"javacsmrc72809Second/rulesmhule\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", + "x-ms-request-id" : "91aca329-7d2e-4747-a976-da1c45f6485c", + "Body" : "{\"properties\":{\"startIP\":\"192.168.1.10\",\"endIP\":\"192.168.1.20\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second/firewallRules/rulesmhule\",\"name\":\"javacsmrc16532Second/rulesmhule\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Second/firewallRules/rulesmhule?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Second/firewallRules/rulesmhule?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/redis/javacsmrc72809Third/linkedServers?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/redis/javacsmrc16532Third/linkedServers?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0119750c-e3a8-43dd-ab6b-0cc169639c2a", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "362de4f3-5864-4c59-ad90-cc4e21463c03", "Content-Type" : "application/json" }, "Response" : { @@ -5016,27 +5688,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", + "x-ms-ratelimit-remaining-subscription-reads" : "11928", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ebeb6af-b298-4899-9fa7-10f53c7e9dfd", - "Date" : "Mon, 23 Aug 2021 04:23:18 GMT", + "x-ms-correlation-request-id" : "70b856de-c5dd-4e3c-a8a6-ac5559b434e8", + "Date" : "Sun, 06 Mar 2022 07:22:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "0119750c-e3a8-43dd-ab6b-0cc169639c2a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042318Z:6ebeb6af-b298-4899-9fa7-10f53c7e9dfd", + "client-request-id" : "362de4f3-5864-4c59-ad90-cc4e21463c03", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072254Z:70b856de-c5dd-4e3c-a8a6-ac5559b434e8", "Expires" : "-1", - "x-ms-request-id" : "58a953a7-cbc7-4b5f-a8cd-cb8a5f59918d", + "x-ms-request-id" : "35d6f4c0-42d7-4fe7-8fdb-c6c37e265b4a", "Body" : "{\"value\":[]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg81366?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg28437?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0302c5d7-1aec-4b92-9128-91fe6b2d19de", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "61d231be-0727-4b95-bf50-23db4157cb67", "Content-Type" : "application/json" }, "Response" : { @@ -5046,43 +5718,43 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "404", - "x-ms-correlation-request-id" : "13ce9ce8-0d8e-4210-88ed-54634d36ef22", - "Date" : "Mon, 23 Aug 2021 04:23:18 GMT", + "x-ms-correlation-request-id" : "504f5020-5f58-46ac-8dd7-88d3c60e1524", + "Date" : "Sun, 06 Mar 2022 07:22:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "x-ms-failure-cause" : "gateway", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042318Z:13ce9ce8-0d8e-4210-88ed-54634d36ef22", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072255Z:504f5020-5f58-46ac-8dd7-88d3c60e1524", "Expires" : "-1", - "x-ms-request-id" : "13ce9ce8-0d8e-4210-88ed-54634d36ef22", - "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg81366' could not be found.\"}}", + "x-ms-request-id" : "504f5020-5f58-46ac-8dd7-88d3c60e1524", + "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg28437' could not be found.\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg81366Second?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg28437Second?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3c20912-6b15-4f31-a169-de428afb832d", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "19bb69ef-0709-4ff4-a8b6-a0146bcbe38c", "Content-Type" : "application/json" }, "Response" : { "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "x-ms-ratelimit-remaining-subscription-deletes" : "14996", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "x-ms-correlation-request-id" : "6d92ce32-8e60-448a-a555-96d4b32332c9", - "Date" : "Mon, 23 Aug 2021 04:23:22 GMT", + "x-ms-correlation-request-id" : "fbc2556e-d881-4ab4-a4ed-b31c3b28e8e9", + "Date" : "Sun, 06 Mar 2022 07:23:02 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T042322Z:6d92ce32-8e60-448a-a555-96d4b32332c9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T072302Z:fbc2556e-d881-4ab4-a4ed-b31c3b28e8e9", "Expires" : "-1", - "x-ms-request-id" : "6d92ce32-8e60-448a-a555-96d4b32332c9", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4MTM2NlNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2021-01-01" + "x-ms-request-id" : "fbc2556e-d881-4ab4-a4ed-b31c3b28e8e9", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcyODQzN1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2021-01-01" }, "Exception" : null } ], - "variables" : [ "javacsmrg81366", "javacsmrc72809", "javacsmsa40782" ] -} + "variables" : [ "javacsmrg28437", "javacsmrc16532", "javacsmsa88881" ] +} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canCRUDRedisCache.json b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canCRUDRedisCache.json index f7f00958280c0..877ad77a0ba0f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canCRUDRedisCache.json +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canCRUDRedisCache.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bc97449d-1b47-4aa1-815c-96e494a32410", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "aed11f96-585b-40da-8971-200e1924514e", "Content-Type" : "application/json" }, "Response" : { @@ -13,24 +13,24 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "404", - "x-ms-correlation-request-id" : "aa373424-eb9e-4522-aab2-c1b9ded2ca4d", - "Date" : "Mon, 23 Aug 2021 08:04:55 GMT", + "x-ms-correlation-request-id" : "700f1cd5-6d40-440a-a2ad-33405296cb9c", + "Date" : "Sun, 06 Mar 2022 06:20:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "x-ms-failure-cause" : "gateway", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080455Z:aa373424-eb9e-4522-aab2-c1b9ded2ca4d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062033Z:700f1cd5-6d40-440a-a2ad-33405296cb9c", "Expires" : "-1", - "x-ms-request-id" : "aa373424-eb9e-4522-aab2-c1b9ded2ca4d", - "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg43675Second' could not be found.\"}}", + "x-ms-request-id" : "700f1cd5-6d40-440a-a2ad-33405296cb9c", + "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg92023Second' could not be found.\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ad351ed-bd0c-489e-be4f-46d88653ccce", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "152fa8fd-7745-426a-b7f5-9d2b832d395e", "Content-Type" : "application/json" }, "Response" : { @@ -39,24 +39,24 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "404", - "x-ms-correlation-request-id" : "b4a9a29f-477e-4492-a98a-0614510dba02", - "Date" : "Mon, 23 Aug 2021 08:04:55 GMT", + "x-ms-correlation-request-id" : "88a1b7e9-3093-449f-9880-03454a21eaef", + "Date" : "Sun, 06 Mar 2022 06:20:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "x-ms-failure-cause" : "gateway", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080455Z:b4a9a29f-477e-4492-a98a-0614510dba02", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062033Z:88a1b7e9-3093-449f-9880-03454a21eaef", "Expires" : "-1", - "x-ms-request-id" : "b4a9a29f-477e-4492-a98a-0614510dba02", - "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg43675Second' could not be found.\"}}", + "x-ms-request-id" : "88a1b7e9-3093-449f-9880-03454a21eaef", + "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg92023Second' could not be found.\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg43675?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg92023?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f9061cd-e256-4212-83bc-80770ab77d34", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1c6beda0-db72-4853-ae46-5a33f8aeedf8", "Content-Type" : "application/json" }, "Response" : { @@ -66,23 +66,23 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "86d7932e-0be5-4836-a095-68137fa28791", - "Date" : "Mon, 23 Aug 2021 08:04:56 GMT", + "x-ms-correlation-request-id" : "9e6efca0-1288-468b-a69c-444908d26d5e", + "Date" : "Sun, 06 Mar 2022 06:20:35 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080456Z:86d7932e-0be5-4836-a095-68137fa28791", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062035Z:9e6efca0-1288-468b-a69c-444908d26d5e", "Expires" : "-1", - "x-ms-request-id" : "86d7932e-0be5-4836-a095-68137fa28791", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675\",\"name\":\"javacsmrg43675\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "9e6efca0-1288-468b-a69c-444908d26d5e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023\",\"name\":\"javacsmrg92023\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastasia\",\"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/javacsmrg43675Second?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg92023Second?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "503b0379-d4d7-4f49-a46a-dad1bf54f488", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7595d5e4-1c65-4a58-9252-8dbc4b8cc092", "Content-Type" : "application/json" }, "Response" : { @@ -92,169 +92,144 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "6f99fbeb-0725-4001-84ea-7b95cccb9243", - "Date" : "Mon, 23 Aug 2021 08:04:57 GMT", + "x-ms-correlation-request-id" : "923e8341-32d2-46fc-a100-53b100ea83e6", + "Date" : "Sun, 06 Mar 2022 06:20:35 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080458Z:6f99fbeb-0725-4001-84ea-7b95cccb9243", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062036Z:923e8341-32d2-46fc-a100-53b100ea83e6", "Expires" : "-1", - "x-ms-request-id" : "6f99fbeb-0725-4001-84ea-7b95cccb9243", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second\",\"name\":\"javacsmrg43675Second\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "923e8341-32d2-46fc-a100-53b100ea83e6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second\",\"name\":\"javacsmrg92023Second\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"centralus\",\"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/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a83da9d8-358b-4444-99bb-21f5dfc2fa0a", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6a937f5a-f860-4bc5-b59f-9c745cc0b2e8", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "831", + "content-length" : "1107", "Server" : "Microsoft-HTTPAPI/2.0", "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" : "714f8d0a-2c8a-4d37-9a50-d026794a8729", - "Date" : "Mon, 23 Aug 2021 08:05:00 GMT", + "x-ms-correlation-request-id" : "c12d5663-3f26-4af1-a2e7-7c2e422ff3c1", + "Date" : "Sun, 06 Mar 2022 06:20:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a83da9d8-358b-4444-99bb-21f5dfc2fa0a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080500Z:714f8d0a-2c8a-4d37-9a50-d026794a8729", + "client-request-id" : "6a937f5a-f860-4bc5-b59f-9c745cc0b2e8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062040Z:c12d5663-3f26-4af1-a2e7-7c2e422ff3c1", "Expires" : "-1", - "x-ms-request-id" : "24d721cb-d40d-46bc-9def-0203127ae0bf", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"},\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East Asia/asyncOperations/a0bf8e3b-99f9-4e46-91ec-e0b7fd629604?api-version=2021-06-01", + "x-ms-request-id" : "a0bf8e3b-99f9-4e46-91ec-e0b7fd629604", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"javacsmrc39095\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.1.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"***REMOVED***\",\r\n \"secondaryKey\": \"***REMOVED***\"\r\n },\r\n \"hostName\": \"javacsmrc39095.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fdb8c7ac-9bbf-477c-8c5c-6b5088bba229", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f55bd027-2107-4c82-a0a9-7d3d9dc58b88", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "952", + "content-length" : "1466", "Server" : "Microsoft-HTTPAPI/2.0", "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" : "eabefe45-cf30-4841-b101-9e1a214481d8", - "Date" : "Mon, 23 Aug 2021 08:05:04 GMT", + "x-ms-correlation-request-id" : "87e62aa9-bf26-474e-990d-d3f8b114a9be", + "Date" : "Sun, 06 Mar 2022 06:20:45 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "fdb8c7ac-9bbf-477c-8c5c-6b5088bba229", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080505Z:eabefe45-cf30-4841-b101-9e1a214481d8", + "client-request-id" : "f55bd027-2107-4c82-a0a9-7d3d9dc58b88", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062046Z:87e62aa9-bf26-474e-990d-d3f8b114a9be", "Expires" : "-1", - "x-ms-request-id" : "464e1ea6-a1e3-4c93-a34c-17a2b3c3ded5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"},\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central US/asyncOperations/604574b4-b2c4-48be-a6f9-b0c9be9bd17a?api-version=2021-06-01", + "x-ms-request-id" : "604574b4-b2c4-48be-a6f9-b0c9be9bd17a", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\r\n \"location\": \"Central US\",\r\n \"name\": \"javacsmrc39095Second\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.1.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15002,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15003,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"***REMOVED***\",\r\n \"secondaryKey\": \"***REMOVED***\"\r\n },\r\n \"hostName\": \"javacsmrc39095Second.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"shardCount\": 2,\r\n \"linkedServers\": []\r\n }\r\n}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf45b99a-0c9b-4fe9-9f8c-b4df9d38665c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3101bc2d-2db7-44b6-a026-abf41806bf10", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "1038", + "content-length" : "1300", "Server" : "Microsoft-HTTPAPI/2.0", "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" : "e46b0dee-5aac-48b3-bcbf-0f58564a9848", - "Date" : "Mon, 23 Aug 2021 08:05:06 GMT", + "x-ms-correlation-request-id" : "b67cb5db-3359-497c-8e4d-f966eaa2432d", + "Date" : "Sun, 06 Mar 2022 06:20:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "bf45b99a-0c9b-4fe9-9f8c-b4df9d38665c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080507Z:e46b0dee-5aac-48b3-bcbf-0f58564a9848", + "client-request-id" : "3101bc2d-2db7-44b6-a026-abf41806bf10", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062046Z:b67cb5db-3359-497c-8e4d-f966eaa2432d", "Expires" : "-1", - "x-ms-request-id" : "7fb22aaf-8972-4f94-9b48-176baa7d9aa7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"},\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central US/asyncOperations/39964414-8ce3-4fff-b0cc-a08d49e4ccc3?api-version=2021-06-01", + "x-ms-request-id" : "39964414-8ce3-4fff-b0cc-a08d49e4ccc3", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\r\n \"location\": \"Central US\",\r\n \"name\": \"javacsmrc39095Third\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.1.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 2\r\n },\r\n \"enableNonSslPort\": true,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"nonSslPort\": 13000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"nonSslPort\": 13001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"15000\",\r\n \"maxmemory-reserved\": \"1330\",\r\n \"maxfragmentationmemory-reserved\": \"1330\",\r\n \"maxmemory-delta\": \"1330\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"***REMOVED***\",\r\n \"secondaryKey\": \"***REMOVED***\"\r\n },\r\n \"hostName\": \"javacsmrc39095Third.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "715f6c2d-3eff-4a85-adfc-d7f7d35b8488" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b0609d30-81d9-460a-a7c4-46462c93705a" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "8106d438-8271-4fe3-91e7-21a995dc3f5d", - "Date" : "Mon, 23 Aug 2021 08:05:30 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", - "Cache-Control" : "no-cache", - "client-request-id" : "715f6c2d-3eff-4a85-adfc-d7f7d35b8488", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080530Z:8106d438-8271-4fe3-91e7-21a995dc3f5d", - "Expires" : "-1", - "x-ms-request-id" : "d9fa095a-67ec-402d-8afc-69c01a9786da", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b97549e-715b-49ba-93ce-b986466d4bdd" - }, - "Response" : { - "content-length" : "833", - "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", - "x-ms-correlation-request-id" : "2c899844-18fb-4aed-9775-2f55872a5899", - "Date" : "Mon, 23 Aug 2021 08:05:34 GMT", + "x-ms-correlation-request-id" : "8f9c403d-bfc7-44fd-863f-a27a13ec4a82", + "Date" : "Sun, 06 Mar 2022 06:21:10 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "9b97549e-715b-49ba-93ce-b986466d4bdd", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080535Z:2c899844-18fb-4aed-9775-2f55872a5899", + "client-request-id" : "b0609d30-81d9-460a-a7c4-46462c93705a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062110Z:8f9c403d-bfc7-44fd-863f-a27a13ec4a82", "Expires" : "-1", - "x-ms-request-id" : "c82e08f9-df6d-4b16-a81d-b8bc65b80519", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "870f3f30-be5d-4639-8b62-7b729b53c461", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b595bee6-b6df-4f2a-bade-70d22de1e558" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "86d9b3e8-5f09-414a-8b66-c7166f15af70" }, "Response" : { "content-length" : "919", @@ -262,643 +237,587 @@ "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" : "98111a74-e60f-480d-a957-65737d34dcd4", - "Date" : "Mon, 23 Aug 2021 08:05:37 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", - "Cache-Control" : "no-cache", - "client-request-id" : "b595bee6-b6df-4f2a-bade-70d22de1e558", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080537Z:98111a74-e60f-480d-a957-65737d34dcd4", - "Expires" : "-1", - "x-ms-request-id" : "2582be09-d57c-4069-bfca-500b47822604", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1296309b-4ddd-43f0-bd9f-d315dcda1dd1" - }, - "Response" : { - "content-length" : "712", - "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", - "x-ms-correlation-request-id" : "2bd1021d-bd93-4528-8d41-8fb8c36e029d", - "Date" : "Mon, 23 Aug 2021 08:06:00 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", - "Cache-Control" : "no-cache", - "client-request-id" : "1296309b-4ddd-43f0-bd9f-d315dcda1dd1", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080600Z:2bd1021d-bd93-4528-8d41-8fb8c36e029d", - "Expires" : "-1", - "x-ms-request-id" : "2b57bc13-bb35-4a30-baa4-e26dc4f34d3e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bb59489f-946d-4888-ada9-03503e6f964a" - }, - "Response" : { - "content-length" : "833", - "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", - "x-ms-correlation-request-id" : "0513c5da-2de9-46e6-a6ad-5887059f251e", - "Date" : "Mon, 23 Aug 2021 08:06:05 GMT", + "x-ms-correlation-request-id" : "8eda89ab-ad74-4f9b-9d45-67e7874301c3", + "Date" : "Sun, 06 Mar 2022 06:21:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "bb59489f-946d-4888-ada9-03503e6f964a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080606Z:0513c5da-2de9-46e6-a6ad-5887059f251e", + "client-request-id" : "86d9b3e8-5f09-414a-8b66-c7166f15af70", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062117Z:8eda89ab-ad74-4f9b-9d45-67e7874301c3", "Expires" : "-1", - "x-ms-request-id" : "3e44a74c-5945-4eb7-99e5-7b7bdd6dc616", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "81cc99b8-ed84-46c6-a421-cef929be0eba", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4ef61ddb-469a-434e-b502-d8380fd29822" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2ad2c9a5-efed-436e-9347-1fe3982a6ccb" }, "Response" : { - "content-length" : "919", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "8b7edba8-2fb9-4d42-a363-96705f27ffef", - "Date" : "Mon, 23 Aug 2021 08:06:07 GMT", + "x-ms-correlation-request-id" : "9aabb4e2-21de-40e6-aceb-ff13af6969d1", + "Date" : "Sun, 06 Mar 2022 06:21:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4ef61ddb-469a-434e-b502-d8380fd29822", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080607Z:8b7edba8-2fb9-4d42-a363-96705f27ffef", + "client-request-id" : "2ad2c9a5-efed-436e-9347-1fe3982a6ccb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062117Z:9aabb4e2-21de-40e6-aceb-ff13af6969d1", "Expires" : "-1", - "x-ms-request-id" : "471fe1c9-e62e-4128-b297-f01ee46db817", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "49ed1183-606f-4941-9aec-a0ba7edc859e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a532087-cc8d-4749-a79c-21474f250171" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "784b2e54-0b0d-40be-a600-c0f92208a924" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "x-ms-correlation-request-id" : "304ec109-337a-484d-b6ea-6ec75d60b95b", - "Date" : "Mon, 23 Aug 2021 08:06:30 GMT", + "x-ms-correlation-request-id" : "cde900b4-b394-4fa8-bfe2-3ca9ae5a3528", + "Date" : "Sun, 06 Mar 2022 06:21:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4a532087-cc8d-4749-a79c-21474f250171", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080630Z:304ec109-337a-484d-b6ea-6ec75d60b95b", + "client-request-id" : "784b2e54-0b0d-40be-a600-c0f92208a924", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062140Z:cde900b4-b394-4fa8-bfe2-3ca9ae5a3528", "Expires" : "-1", - "x-ms-request-id" : "5e8ae110-7980-445e-9606-c926c6130009", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "ec3d2b9f-41ce-4d33-b2b7-59e47433577c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca5426e0-8a95-4c71-835a-e0d0c9bc39ea" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "72387fa9-9004-491f-acbe-15c9b738bbaa" }, "Response" : { - "content-length" : "833", + "content-length" : "919", "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", - "x-ms-correlation-request-id" : "56eeeec0-1dc8-49c2-9b25-79525a4f20c8", - "Date" : "Mon, 23 Aug 2021 08:06:36 GMT", + "x-ms-correlation-request-id" : "4df0647f-6c96-40c2-8248-d96123edbec1", + "Date" : "Sun, 06 Mar 2022 06:21:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ca5426e0-8a95-4c71-835a-e0d0c9bc39ea", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080636Z:56eeeec0-1dc8-49c2-9b25-79525a4f20c8", + "client-request-id" : "72387fa9-9004-491f-acbe-15c9b738bbaa", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062147Z:4df0647f-6c96-40c2-8248-d96123edbec1", "Expires" : "-1", - "x-ms-request-id" : "5b55976f-d3b1-4cd4-b0e6-02122f11dd33", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "80278ffa-0796-4f95-9130-d34ca81cd67b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "391e3559-c9d2-46cb-ba2c-0b575d76ff09" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "da959365-075d-477c-a25b-d7ee9c2fa411" }, "Response" : { - "content-length" : "919", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "f8141509-86a5-4238-a47c-7f49ab2c95f5", - "Date" : "Mon, 23 Aug 2021 08:06:37 GMT", + "x-ms-correlation-request-id" : "e29a4e7f-6e05-4cd8-95d7-a14628fcc34e", + "Date" : "Sun, 06 Mar 2022 06:21:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "391e3559-c9d2-46cb-ba2c-0b575d76ff09", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080637Z:f8141509-86a5-4238-a47c-7f49ab2c95f5", + "client-request-id" : "da959365-075d-477c-a25b-d7ee9c2fa411", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062148Z:e29a4e7f-6e05-4cd8-95d7-a14628fcc34e", "Expires" : "-1", - "x-ms-request-id" : "c10e959b-6174-4f9b-b18f-ab5cb0d00317", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "25e3d4f3-acd0-4b42-aac5-dcfac20f8588", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5256d89d-4083-48c4-8348-001e86e17830" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b0734b47-6498-4efd-8d92-f9466a97c107" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "x-ms-correlation-request-id" : "24ad3bd9-1fff-456b-bcaf-bd04b9d2bb8c", - "Date" : "Mon, 23 Aug 2021 08:07:00 GMT", + "x-ms-correlation-request-id" : "9dff70ad-e99e-4850-9bfc-66b17bee24a7", + "Date" : "Sun, 06 Mar 2022 06:22:10 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "5256d89d-4083-48c4-8348-001e86e17830", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080701Z:24ad3bd9-1fff-456b-bcaf-bd04b9d2bb8c", + "client-request-id" : "b0734b47-6498-4efd-8d92-f9466a97c107", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062210Z:9dff70ad-e99e-4850-9bfc-66b17bee24a7", "Expires" : "-1", - "x-ms-request-id" : "c0806768-5184-4ba6-8cc9-ab30711bc214", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "19d51c84-3794-42b2-af9c-0d7245369a86", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b946292f-10b6-419a-b784-5f8d4145e43c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1b18781a-5fc2-4288-946b-b6b3f3c18ee5" }, "Response" : { - "content-length" : "833", + "content-length" : "919", "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", - "x-ms-correlation-request-id" : "0fe414b7-d997-4037-bbce-8ebf6c47e044", - "Date" : "Mon, 23 Aug 2021 08:07:06 GMT", + "x-ms-correlation-request-id" : "3dce45c8-ad3b-4fc3-b197-0ca494a4a2c6", + "Date" : "Sun, 06 Mar 2022 06:22:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "b946292f-10b6-419a-b784-5f8d4145e43c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080706Z:0fe414b7-d997-4037-bbce-8ebf6c47e044", + "client-request-id" : "1b18781a-5fc2-4288-946b-b6b3f3c18ee5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062217Z:3dce45c8-ad3b-4fc3-b197-0ca494a4a2c6", "Expires" : "-1", - "x-ms-request-id" : "befea9ea-44a7-4c6b-b502-17d307c024f7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "d8ce72ac-a22d-4c67-9266-310a536d8bf6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09c43c3e-e969-4000-8636-35183acafce8" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f1949f88-78c7-4910-bb8a-fcf3a931cb9e" }, "Response" : { - "content-length" : "919", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "6715c96b-3b5c-475d-94e3-ff4c8ee1b692", - "Date" : "Mon, 23 Aug 2021 08:07:07 GMT", + "x-ms-correlation-request-id" : "0911e19c-275c-488e-9444-8f7092007697", + "Date" : "Sun, 06 Mar 2022 06:22:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "09c43c3e-e969-4000-8636-35183acafce8", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080708Z:6715c96b-3b5c-475d-94e3-ff4c8ee1b692", + "client-request-id" : "f1949f88-78c7-4910-bb8a-fcf3a931cb9e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062218Z:0911e19c-275c-488e-9444-8f7092007697", "Expires" : "-1", - "x-ms-request-id" : "1c5fbd71-47cd-4510-a008-f920d7b67f63", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "8793d7af-47bc-48a9-be8c-d404034b150a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "37985716-3cb3-469c-a1de-0d1f6e74fe36" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a84c837c-dbab-47c8-9a0f-d0b41351266b" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ff9cdae0-13e5-48fa-bc97-e8a27c4b0e5f", - "Date" : "Mon, 23 Aug 2021 08:07:30 GMT", + "x-ms-correlation-request-id" : "1f43eee6-79a1-439a-92f1-9a4418c6182b", + "Date" : "Sun, 06 Mar 2022 06:22:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "37985716-3cb3-469c-a1de-0d1f6e74fe36", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080731Z:ff9cdae0-13e5-48fa-bc97-e8a27c4b0e5f", + "client-request-id" : "a84c837c-dbab-47c8-9a0f-d0b41351266b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062241Z:1f43eee6-79a1-439a-92f1-9a4418c6182b", "Expires" : "-1", - "x-ms-request-id" : "8c28ed40-7fd1-431e-94bf-070a8244b2cd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "8ab6e356-2abb-4c23-9d23-1ab30bbd8bbb", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e683baa-7212-4d9f-8752-933bbb233537" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7659f52d-944a-4f34-a1bf-d55aa2e4e5ff" }, "Response" : { - "content-length" : "833", + "content-length" : "919", "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", - "x-ms-correlation-request-id" : "0cb6ec69-dc88-4064-8070-7303a396bb98", - "Date" : "Mon, 23 Aug 2021 08:07:36 GMT", + "x-ms-correlation-request-id" : "34ccf48e-e04e-4147-a9b9-0e138b5fdf9d", + "Date" : "Sun, 06 Mar 2022 06:22:48 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "3e683baa-7212-4d9f-8752-933bbb233537", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080737Z:0cb6ec69-dc88-4064-8070-7303a396bb98", + "client-request-id" : "7659f52d-944a-4f34-a1bf-d55aa2e4e5ff", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062248Z:34ccf48e-e04e-4147-a9b9-0e138b5fdf9d", "Expires" : "-1", - "x-ms-request-id" : "d9b65c91-c99a-46bb-bdee-f635dbdbd5a5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "d92a2eb9-38fa-4877-9b03-2cc1e5568b46", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "884f4603-2970-41d5-aae0-136d76ada46c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f4491ea7-1844-4c5c-8138-34cd1cd41711" }, "Response" : { - "content-length" : "919", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "c784ddea-2feb-4d6d-bfcb-873946fe8ec4", - "Date" : "Mon, 23 Aug 2021 08:07:37 GMT", + "x-ms-correlation-request-id" : "168c0f33-fc00-4a9e-b7f1-1e25a05499e4", + "Date" : "Sun, 06 Mar 2022 06:22:48 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "884f4603-2970-41d5-aae0-136d76ada46c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080738Z:c784ddea-2feb-4d6d-bfcb-873946fe8ec4", + "client-request-id" : "f4491ea7-1844-4c5c-8138-34cd1cd41711", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062249Z:168c0f33-fc00-4a9e-b7f1-1e25a05499e4", "Expires" : "-1", - "x-ms-request-id" : "d457c86f-829f-4c81-a4c7-651a04df4bc1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "0f529644-2b5c-40a1-a03f-63c78c7871fc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "76f84463-c26f-4662-bddb-66bc7bbac0d0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f7d2fc51-e744-48c2-9dd1-7aaf6b780db9" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "x-ms-correlation-request-id" : "aaf3856a-4999-4a14-b02b-4efe25b808d5", - "Date" : "Mon, 23 Aug 2021 08:08:00 GMT", + "x-ms-correlation-request-id" : "68843469-b94f-44a2-8632-7f0fc477031f", + "Date" : "Sun, 06 Mar 2022 06:23:10 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "76f84463-c26f-4662-bddb-66bc7bbac0d0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080801Z:aaf3856a-4999-4a14-b02b-4efe25b808d5", + "client-request-id" : "f7d2fc51-e744-48c2-9dd1-7aaf6b780db9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062311Z:68843469-b94f-44a2-8632-7f0fc477031f", "Expires" : "-1", - "x-ms-request-id" : "9e7a298a-400f-4485-bb03-27c34e7d4c39", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "07a0890c-093c-4bd1-8b31-2b813c1da006", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bc123708-7f5c-49c1-bd41-fe607120f4df" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0ec91e7c-5e67-47ca-bf5a-c97efde356de" }, "Response" : { - "content-length" : "833", + "content-length" : "919", "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", - "x-ms-correlation-request-id" : "8098a799-8d80-4e04-8911-ecb11233d820", - "Date" : "Mon, 23 Aug 2021 08:08:06 GMT", + "x-ms-correlation-request-id" : "42decc5e-19a2-43d5-bb20-6133527a785a", + "Date" : "Sun, 06 Mar 2022 06:23:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "bc123708-7f5c-49c1-bd41-fe607120f4df", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080807Z:8098a799-8d80-4e04-8911-ecb11233d820", + "client-request-id" : "0ec91e7c-5e67-47ca-bf5a-c97efde356de", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062318Z:42decc5e-19a2-43d5-bb20-6133527a785a", "Expires" : "-1", - "x-ms-request-id" : "483a3036-18fb-4a76-8263-189d40486d31", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "a3b54fbb-aa9a-455b-aacb-10977b8e189b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ab46dc5-b00e-4c58-a64c-ebb7e833f720" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "01bf57d5-b2f5-4ee8-a675-2e15b3b9db03" }, "Response" : { - "content-length" : "919", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "269b1138-55db-49b4-9cb0-515502d817ae", - "Date" : "Mon, 23 Aug 2021 08:08:08 GMT", + "x-ms-correlation-request-id" : "9cf482fc-06ea-4008-950e-cc07aeb55974", + "Date" : "Sun, 06 Mar 2022 06:23:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "5ab46dc5-b00e-4c58-a64c-ebb7e833f720", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080808Z:269b1138-55db-49b4-9cb0-515502d817ae", + "client-request-id" : "01bf57d5-b2f5-4ee8-a675-2e15b3b9db03", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062319Z:9cf482fc-06ea-4008-950e-cc07aeb55974", "Expires" : "-1", - "x-ms-request-id" : "54094190-9273-4218-a019-afab659f58a7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "6d6c1fe2-5136-4ebb-9ff5-a8912da894f2", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "783b2199-e8ed-4fbe-9891-c183b475ed1f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c78d2c60-d6fc-445d-b871-a531c5033543" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c790c216-a0f4-4ced-86af-d6cf2f3e0eb6", - "Date" : "Mon, 23 Aug 2021 08:08:30 GMT", + "x-ms-correlation-request-id" : "316f2ae2-5c7c-48ad-bc6f-31d22f95c71c", + "Date" : "Sun, 06 Mar 2022 06:23:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "783b2199-e8ed-4fbe-9891-c183b475ed1f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080831Z:c790c216-a0f4-4ced-86af-d6cf2f3e0eb6", + "client-request-id" : "c78d2c60-d6fc-445d-b871-a531c5033543", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062341Z:316f2ae2-5c7c-48ad-bc6f-31d22f95c71c", "Expires" : "-1", - "x-ms-request-id" : "c0c953eb-2397-4080-8e10-ef8478fb0591", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "1e642ba1-e7cc-4ba0-91a8-40aad8efe35b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ebea9ea6-f696-49f5-9c51-c448069f9654" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "281ea849-a957-48b2-a05c-0842065321b4" }, "Response" : { - "content-length" : "833", + "content-length" : "919", "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", - "x-ms-correlation-request-id" : "bb00cbe7-3331-4702-aa09-8bf2c773021d", - "Date" : "Mon, 23 Aug 2021 08:08:37 GMT", + "x-ms-correlation-request-id" : "a7b9bda7-8205-436d-8901-ef853f464726", + "Date" : "Sun, 06 Mar 2022 06:23:48 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ebea9ea6-f696-49f5-9c51-c448069f9654", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080837Z:bb00cbe7-3331-4702-aa09-8bf2c773021d", + "client-request-id" : "281ea849-a957-48b2-a05c-0842065321b4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062349Z:a7b9bda7-8205-436d-8901-ef853f464726", "Expires" : "-1", - "x-ms-request-id" : "f0e6619d-e270-4b7c-a8a3-994ed1391f8b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "09978f68-c77a-4af3-b78f-289db1ff0e25", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b710e96-8953-45af-a888-daf808c9982c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "10adf59b-eebc-4116-b368-7deeaea2fc1c" }, "Response" : { - "content-length" : "919", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "a63db2f3-6c79-465b-bf97-5430fb7ccfb2", - "Date" : "Mon, 23 Aug 2021 08:08:39 GMT", + "x-ms-correlation-request-id" : "13e5490c-4094-4b93-821f-b7559caba2af", + "Date" : "Sun, 06 Mar 2022 06:23:48 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "7b710e96-8953-45af-a888-daf808c9982c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080839Z:a63db2f3-6c79-465b-bf97-5430fb7ccfb2", + "client-request-id" : "10adf59b-eebc-4116-b368-7deeaea2fc1c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062349Z:13e5490c-4094-4b93-821f-b7559caba2af", "Expires" : "-1", - "x-ms-request-id" : "4e5572c9-ec9e-4ace-801a-49cbdf83918b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "a69d8ddb-b056-4269-8bda-927aca6147b1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4e8c790-1e96-46a8-ae1d-7e26c9b2790a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a9d5a015-6ba8-4478-8b24-88ed7b55666a" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0c12949d-b30b-4d37-84b4-1538b75488d5", - "Date" : "Mon, 23 Aug 2021 08:09:01 GMT", + "x-ms-correlation-request-id" : "e447fb6d-7196-4f03-bfe6-8e3238ad38e6", + "Date" : "Sun, 06 Mar 2022 06:24:11 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c4e8c790-1e96-46a8-ae1d-7e26c9b2790a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080901Z:0c12949d-b30b-4d37-84b4-1538b75488d5", + "client-request-id" : "a9d5a015-6ba8-4478-8b24-88ed7b55666a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062411Z:e447fb6d-7196-4f03-bfe6-8e3238ad38e6", "Expires" : "-1", - "x-ms-request-id" : "a67dbccf-c962-47d5-836e-5d53b6ab446d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "89f4f856-9c4d-4089-87da-690f14f834f6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "61158561-1bc4-4d39-8f36-998c9ff27acd" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a04fd517-0195-41eb-8a5f-ebbf57773255" }, "Response" : { - "content-length" : "833", + "content-length" : "919", "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", - "x-ms-correlation-request-id" : "ddf3a7af-69ef-45b9-8150-0e3931643462", - "Date" : "Mon, 23 Aug 2021 08:09:07 GMT", + "x-ms-correlation-request-id" : "da2d1c58-ee05-417a-84d1-f35b3427fd7b", + "Date" : "Sun, 06 Mar 2022 06:24:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "61158561-1bc4-4d39-8f36-998c9ff27acd", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080908Z:ddf3a7af-69ef-45b9-8150-0e3931643462", + "client-request-id" : "a04fd517-0195-41eb-8a5f-ebbf57773255", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062419Z:da2d1c58-ee05-417a-84d1-f35b3427fd7b", "Expires" : "-1", - "x-ms-request-id" : "7654a350-b46d-459d-9bf5-f0de07f594e1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "34c71ea8-7ac9-4cd6-8350-ecf0cb28edf3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "342d1888-2e31-4255-8fd6-ba4648d053d3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "046b8f5f-20db-49df-8e18-937bce057abf" }, "Response" : { - "content-length" : "919", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "0f93c768-20c1-4940-ad05-1475e0bc1e0a", - "Date" : "Mon, 23 Aug 2021 08:09:09 GMT", + "x-ms-correlation-request-id" : "8f11ff06-6634-40e0-b285-bc421f8a271e", + "Date" : "Sun, 06 Mar 2022 06:24:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "342d1888-2e31-4255-8fd6-ba4648d053d3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080909Z:0f93c768-20c1-4940-ad05-1475e0bc1e0a", + "client-request-id" : "046b8f5f-20db-49df-8e18-937bce057abf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062420Z:8f11ff06-6634-40e0-b285-bc421f8a271e", "Expires" : "-1", - "x-ms-request-id" : "7edf2388-96f5-431b-86f4-ee81ae266768", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "c8bce626-c205-4914-9505-a572fbf6f0c2", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "066d9686-d5e0-4934-97c0-d885537f82c2" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "82e608bc-704a-4460-bf74-31395c591a12" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "x-ms-correlation-request-id" : "433ea550-d89b-4b0c-9924-5bd1d5d43247", - "Date" : "Mon, 23 Aug 2021 08:09:31 GMT", + "x-ms-correlation-request-id" : "d16abba3-8247-49b6-b62c-b2151de11d4e", + "Date" : "Sun, 06 Mar 2022 06:24:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "066d9686-d5e0-4934-97c0-d885537f82c2", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080931Z:433ea550-d89b-4b0c-9924-5bd1d5d43247", + "client-request-id" : "82e608bc-704a-4460-bf74-31395c591a12", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062441Z:d16abba3-8247-49b6-b62c-b2151de11d4e", "Expires" : "-1", - "x-ms-request-id" : "e275c44d-db12-45d7-b13d-dc5b98ccf97b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "2f9432fb-2674-4be4-95b3-c161d0720a83", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "411db29a-6f95-471f-9c07-907ce386d1cf" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1200869d-d8ed-45d2-981d-6c3702d994bc" }, "Response" : { "content-length" : "919", @@ -908,81 +827,81 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "x-ms-correlation-request-id" : "05ef012a-e660-48f4-9130-2b63620b3e23", - "Date" : "Mon, 23 Aug 2021 08:09:39 GMT", + "x-ms-correlation-request-id" : "36fe9985-8177-4a56-b1cc-0a321618e7d1", + "Date" : "Sun, 06 Mar 2022 06:24:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "411db29a-6f95-471f-9c07-907ce386d1cf", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080939Z:05ef012a-e660-48f4-9130-2b63620b3e23", + "client-request-id" : "1200869d-d8ed-45d2-981d-6c3702d994bc", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062449Z:36fe9985-8177-4a56-b1cc-0a321618e7d1", "Expires" : "-1", - "x-ms-request-id" : "073fbb96-9c24-4b3b-b5e1-b71b0ccf68f2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "eb57c022-d5cc-4dca-a93a-049be4456ecf", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "47c544d0-548f-4b14-a5e5-64532d208ec8" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "246f3a8b-a088-424e-8d0e-801ff57144f3" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "5fea5277-75fc-47a4-a992-50d10a73e84e", - "Date" : "Mon, 23 Aug 2021 08:09:39 GMT", + "x-ms-correlation-request-id" : "8dc7e463-bd01-4a17-b880-d7fbf0ae5ddb", + "Date" : "Sun, 06 Mar 2022 06:24:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "47c544d0-548f-4b14-a5e5-64532d208ec8", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T080940Z:5fea5277-75fc-47a4-a992-50d10a73e84e", + "client-request-id" : "246f3a8b-a088-424e-8d0e-801ff57144f3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062450Z:8dc7e463-bd01-4a17-b880-d7fbf0ae5ddb", "Expires" : "-1", - "x-ms-request-id" : "a2e79d52-3d10-4aee-a907-20c00d9d53ab", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "8c0a4abd-0053-4678-a65e-bc5ac5b1d5ca", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f81e49b3-5991-4065-9b29-a32ae398951e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b4064fec-b19f-41f7-ab93-d502aa7ea7f5" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "x-ms-correlation-request-id" : "b6d8c547-5d81-4c77-8454-703a2d16c3c9", - "Date" : "Mon, 23 Aug 2021 08:10:01 GMT", + "x-ms-correlation-request-id" : "1a288769-99c0-4cbf-a593-d3483909e3d3", + "Date" : "Sun, 06 Mar 2022 06:25:12 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f81e49b3-5991-4065-9b29-a32ae398951e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081002Z:b6d8c547-5d81-4c77-8454-703a2d16c3c9", + "client-request-id" : "b4064fec-b19f-41f7-ab93-d502aa7ea7f5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062512Z:1a288769-99c0-4cbf-a593-d3483909e3d3", "Expires" : "-1", - "x-ms-request-id" : "1b132666-26a6-4282-ab94-1d212a930130", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "1304d04c-3b0b-44f6-83fd-d3988267a09e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cca49d68-922e-4ecb-80d0-4d4526aaf872" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f7f894fd-a5a8-42da-a753-e1a8e67a05f6" }, "Response" : { "content-length" : "919", @@ -992,81 +911,81 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a818c5bf-ada7-4726-aa80-f7ec9bc1cd98", - "Date" : "Mon, 23 Aug 2021 08:10:10 GMT", + "x-ms-correlation-request-id" : "04ee70f3-ed72-40de-9b98-c914f2fbd746", + "Date" : "Sun, 06 Mar 2022 06:25:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cca49d68-922e-4ecb-80d0-4d4526aaf872", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081010Z:a818c5bf-ada7-4726-aa80-f7ec9bc1cd98", + "client-request-id" : "f7f894fd-a5a8-42da-a753-e1a8e67a05f6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062520Z:04ee70f3-ed72-40de-9b98-c914f2fbd746", "Expires" : "-1", - "x-ms-request-id" : "15d45d9e-3d0f-4e66-b350-7832f6471a6c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "670d9fc6-6fb6-4e61-b16c-f49ffbcf3e0d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "db0a88e8-e460-419b-ae1e-2b9386cf95d5" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b055f0e8-1718-4c32-a6cb-bb1e96065c4e" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "b246f50c-3208-44c0-b259-fdad592f0dde", - "Date" : "Mon, 23 Aug 2021 08:10:12 GMT", + "x-ms-correlation-request-id" : "72aba777-e8c5-4987-8877-1917c90cd266", + "Date" : "Sun, 06 Mar 2022 06:25:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "db0a88e8-e460-419b-ae1e-2b9386cf95d5", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081013Z:b246f50c-3208-44c0-b259-fdad592f0dde", + "client-request-id" : "b055f0e8-1718-4c32-a6cb-bb1e96065c4e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062521Z:72aba777-e8c5-4987-8877-1917c90cd266", "Expires" : "-1", - "x-ms-request-id" : "4907ed1d-c1c2-47a3-8db0-145b9315eada", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "b60e9a8d-a21f-49aa-8c16-50649c7117ee", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "34199142-7ae3-4b57-a429-3a9efc422016" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ddaa7536-ad99-45f8-8526-72a59fcb1457" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0033783a-32cd-4e5d-bd1d-2be9942cbc9f", - "Date" : "Mon, 23 Aug 2021 08:10:31 GMT", + "x-ms-correlation-request-id" : "2cdc2305-67a7-4521-a671-0563a13ebc18", + "Date" : "Sun, 06 Mar 2022 06:25:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "34199142-7ae3-4b57-a429-3a9efc422016", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081032Z:0033783a-32cd-4e5d-bd1d-2be9942cbc9f", + "client-request-id" : "ddaa7536-ad99-45f8-8526-72a59fcb1457", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062542Z:2cdc2305-67a7-4521-a671-0563a13ebc18", "Expires" : "-1", - "x-ms-request-id" : "176d4cae-c1db-4681-b0f9-1ac73d86d609", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "427e2c4f-f5fd-4f6f-85ac-95c3f1e556da", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5199dce5-dbc6-4ffc-870c-d464ba823df8" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bcb21094-f396-4d2e-a282-11338d50609a" }, "Response" : { "content-length" : "919", @@ -1076,81 +995,81 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "x-ms-correlation-request-id" : "00b64ed6-93d5-4173-949f-aa9dc26cdf51", - "Date" : "Mon, 23 Aug 2021 08:10:40 GMT", + "x-ms-correlation-request-id" : "cec7c7c8-d14e-4d39-be74-7bf4f006d184", + "Date" : "Sun, 06 Mar 2022 06:25:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "5199dce5-dbc6-4ffc-870c-d464ba823df8", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081041Z:00b64ed6-93d5-4173-949f-aa9dc26cdf51", + "client-request-id" : "bcb21094-f396-4d2e-a282-11338d50609a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062550Z:cec7c7c8-d14e-4d39-be74-7bf4f006d184", "Expires" : "-1", - "x-ms-request-id" : "eee43897-976f-4d66-a9d9-fc91c872928b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "f8f040cc-0ffe-4585-9c89-16c6a21576dc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ad968210-d9d1-4cba-ba5d-946d2e577f94" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "cd1b59c9-0c7e-4171-aa5a-21267d579c33" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "78e937a0-707f-42cb-a743-aa98004ea8bd", - "Date" : "Mon, 23 Aug 2021 08:10:42 GMT", + "x-ms-correlation-request-id" : "6eb3e70b-96e8-460f-a096-2465eb093b16", + "Date" : "Sun, 06 Mar 2022 06:25:51 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ad968210-d9d1-4cba-ba5d-946d2e577f94", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081043Z:78e937a0-707f-42cb-a743-aa98004ea8bd", + "client-request-id" : "cd1b59c9-0c7e-4171-aa5a-21267d579c33", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062551Z:6eb3e70b-96e8-460f-a096-2465eb093b16", "Expires" : "-1", - "x-ms-request-id" : "8d2a48c1-314a-48e1-b213-0b62c56d482c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c6d4458d-c63f-4be8-945a-8cc069c5eb4a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "487a0fca-40b0-4a8f-a21a-c84b19340e05" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e847028f-aaa9-4f19-8d2e-484d128b63dd" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e2d45145-16da-4afd-a64e-3d96b9d16905", - "Date" : "Mon, 23 Aug 2021 08:11:01 GMT", + "x-ms-correlation-request-id" : "4f5824a7-59e9-46d8-b098-d505ea6f48b4", + "Date" : "Sun, 06 Mar 2022 06:26:12 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "487a0fca-40b0-4a8f-a21a-c84b19340e05", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081102Z:e2d45145-16da-4afd-a64e-3d96b9d16905", + "client-request-id" : "e847028f-aaa9-4f19-8d2e-484d128b63dd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062612Z:4f5824a7-59e9-46d8-b098-d505ea6f48b4", "Expires" : "-1", - "x-ms-request-id" : "6960a63c-45aa-46f2-bf78-5315f63a2e6b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "e138b0c3-1dc4-40d4-bbe7-4def86c8122e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b88f5498-674c-4562-854f-adfdfdc68c30" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1fe82036-4c8f-4bd9-b9f8-9e7a1799e854" }, "Response" : { "content-length" : "919", @@ -1160,165 +1079,165 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "x-ms-correlation-request-id" : "3249a87c-2a68-4307-92d0-08c877509831", - "Date" : "Mon, 23 Aug 2021 08:11:10 GMT", + "x-ms-correlation-request-id" : "7c77bcea-9697-4657-9328-54970ffea935", + "Date" : "Sun, 06 Mar 2022 06:26:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "b88f5498-674c-4562-854f-adfdfdc68c30", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081111Z:3249a87c-2a68-4307-92d0-08c877509831", + "client-request-id" : "1fe82036-4c8f-4bd9-b9f8-9e7a1799e854", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062620Z:7c77bcea-9697-4657-9328-54970ffea935", "Expires" : "-1", - "x-ms-request-id" : "640f7002-9ae4-42a7-8a13-512a6ea9704c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "7bb74667-eb85-431c-a104-9fd0865ef6e8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d062bfa-e577-4e8e-8a88-508137f08030" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "36f9eab7-76e3-4efe-ad09-ca3c6a52acf7" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "dc4c790b-80a2-444c-b906-3246f45c51e2", - "Date" : "Mon, 23 Aug 2021 08:11:14 GMT", + "x-ms-correlation-request-id" : "3e488e55-7df0-4c9d-bd61-caf8b008dc26", + "Date" : "Sun, 06 Mar 2022 06:26:22 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "3d062bfa-e577-4e8e-8a88-508137f08030", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081114Z:dc4c790b-80a2-444c-b906-3246f45c51e2", + "client-request-id" : "36f9eab7-76e3-4efe-ad09-ca3c6a52acf7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062622Z:3e488e55-7df0-4c9d-bd61-caf8b008dc26", "Expires" : "-1", - "x-ms-request-id" : "824913af-9a2c-4788-aaee-f01c885f5783", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "02c767d6-c8f6-4b44-866f-a0f461c22c04", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "92eda6b3-512e-4637-a1fd-3ad2fc717998" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b77cc09c-d760-48ad-bf9d-0cda172808b6" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "x-ms-correlation-request-id" : "90326e88-820a-4936-aeef-8909de1ac211", - "Date" : "Mon, 23 Aug 2021 08:11:31 GMT", + "x-ms-correlation-request-id" : "bb35a7d2-c99a-4b72-a19e-9a26cbcb7361", + "Date" : "Sun, 06 Mar 2022 06:26:42 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "92eda6b3-512e-4637-a1fd-3ad2fc717998", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081132Z:90326e88-820a-4936-aeef-8909de1ac211", + "client-request-id" : "b77cc09c-d760-48ad-bf9d-0cda172808b6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062642Z:bb35a7d2-c99a-4b72-a19e-9a26cbcb7361", "Expires" : "-1", - "x-ms-request-id" : "26258719-f00f-4493-8eae-f4c94a6f5d4c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "d0c45b0c-8d2a-4c1e-ae4d-785040c8944e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5905cf3-cf04-4634-8807-ebe4966a0d23" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "84283273-0557-4167-acec-0ca03c9e4af7" }, "Response" : { - "content-length" : "967", + "content-length" : "919", "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", - "x-ms-correlation-request-id" : "b9da9d0c-1e80-4b68-b882-329b0b694806", - "Date" : "Mon, 23 Aug 2021 08:11:42 GMT", + "x-ms-correlation-request-id" : "1d332dab-9a4e-4e2e-922c-28baa13c888e", + "Date" : "Sun, 06 Mar 2022 06:26:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e5905cf3-cf04-4634-8807-ebe4966a0d23", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081142Z:b9da9d0c-1e80-4b68-b882-329b0b694806", + "client-request-id" : "84283273-0557-4167-acec-0ca03c9e4af7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062651Z:1d332dab-9a4e-4e2e-922c-28baa13c888e", "Expires" : "-1", - "x-ms-request-id" : "98cc46d7-ad82-4efe-9f27-d92f166bdde8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "6874783d-c230-4f4d-b3cc-8de468e4fcec", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "13527b1b-f639-4106-9aba-18370911609b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d803cdc7-2fc1-4d80-8292-eb3368d052f0" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "3db082cd-d572-4a5d-a4fd-2733ae6bde97", - "Date" : "Mon, 23 Aug 2021 08:11:45 GMT", + "x-ms-correlation-request-id" : "cb65748b-e649-462e-9e6f-f360df173bfd", + "Date" : "Sun, 06 Mar 2022 06:26:52 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "13527b1b-f639-4106-9aba-18370911609b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081145Z:3db082cd-d572-4a5d-a4fd-2733ae6bde97", + "client-request-id" : "d803cdc7-2fc1-4d80-8292-eb3368d052f0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062653Z:cb65748b-e649-462e-9e6f-f360df173bfd", "Expires" : "-1", - "x-ms-request-id" : "291da7be-3cd1-43c9-8ebb-4a5a53a581ef", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "ffcf2307-3980-445d-8400-f18317cbdb18", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6455ac7a-cc1c-4405-ab7e-887e48803bbe" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a9604de4-2262-478d-b80a-0ca38409d98a" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f3fe98a5-cc9c-407c-a13c-b492812bd89a", - "Date" : "Mon, 23 Aug 2021 08:12:02 GMT", + "x-ms-correlation-request-id" : "e835e1e9-24f1-463a-aa07-b8ca33653578", + "Date" : "Sun, 06 Mar 2022 06:27:12 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "6455ac7a-cc1c-4405-ab7e-887e48803bbe", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081202Z:f3fe98a5-cc9c-407c-a13c-b492812bd89a", + "client-request-id" : "a9604de4-2262-478d-b80a-0ca38409d98a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062712Z:e835e1e9-24f1-463a-aa07-b8ca33653578", "Expires" : "-1", - "x-ms-request-id" : "4d9c8058-965d-410c-8783-778d91d70d6d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "3c09cb1c-ce8b-468b-923c-9f165d7694e9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "52d0b8eb-e526-4361-a564-dd88af506fff" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bc60e16a-feed-40d8-be7f-0dd6766b808f" }, "Response" : { "content-length" : "967", @@ -1328,81 +1247,81 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "x-ms-correlation-request-id" : "515334eb-8199-49c3-ae77-83653b1dbebd", - "Date" : "Mon, 23 Aug 2021 08:12:12 GMT", + "x-ms-correlation-request-id" : "c926c247-be3d-491d-a2a9-e25f35392ac6", + "Date" : "Sun, 06 Mar 2022 06:27:21 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "52d0b8eb-e526-4361-a564-dd88af506fff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081212Z:515334eb-8199-49c3-ae77-83653b1dbebd", + "client-request-id" : "bc60e16a-feed-40d8-be7f-0dd6766b808f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062722Z:c926c247-be3d-491d-a2a9-e25f35392ac6", "Expires" : "-1", - "x-ms-request-id" : "7dee614d-eac8-4bcc-9cb9-fc432f9322b1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "e7bb1f3f-dee3-444c-89fb-d80e92780d42", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5d101f0-6f7a-410f-90b3-bfb56cf990de" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "996d242d-4d7d-4c3d-b146-e95b48f034bb" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "198ebf32-a315-4c8b-ab29-9a19caf93e0c", - "Date" : "Mon, 23 Aug 2021 08:12:15 GMT", + "x-ms-correlation-request-id" : "5b313d28-3aaf-4ec3-93eb-ae2cfd45d757", + "Date" : "Sun, 06 Mar 2022 06:27:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e5d101f0-6f7a-410f-90b3-bfb56cf990de", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081216Z:198ebf32-a315-4c8b-ab29-9a19caf93e0c", + "client-request-id" : "996d242d-4d7d-4c3d-b146-e95b48f034bb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062723Z:5b313d28-3aaf-4ec3-93eb-ae2cfd45d757", "Expires" : "-1", - "x-ms-request-id" : "37a756d1-4e2b-402b-aa1d-805990147cd4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "2175201c-db9f-4004-816f-bd2ac4955f12", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0b59529-66c5-495f-af7b-5d3fdf4a5732" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4abb9273-2838-40de-a747-611a599e6b9b" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c5dce223-df8f-4cfa-8f62-e0452d27e123", - "Date" : "Mon, 23 Aug 2021 08:12:32 GMT", + "x-ms-correlation-request-id" : "5abed1d4-b93e-4ec6-a5b9-61670b06ad4f", + "Date" : "Sun, 06 Mar 2022 06:27:43 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e0b59529-66c5-495f-af7b-5d3fdf4a5732", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081232Z:c5dce223-df8f-4cfa-8f62-e0452d27e123", + "client-request-id" : "4abb9273-2838-40de-a747-611a599e6b9b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062743Z:5abed1d4-b93e-4ec6-a5b9-61670b06ad4f", "Expires" : "-1", - "x-ms-request-id" : "619babdc-b3b0-4bbc-ba93-4a25bfbda8aa", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "70f97f48-2db5-4325-b964-4e7b38124a68", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2a0276f-de42-4aab-9cd9-bf8bb150382b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "83c4852d-20de-42d8-874d-b9c61ae7c0e1" }, "Response" : { "content-length" : "967", @@ -1412,53 +1331,53 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "x-ms-correlation-request-id" : "281c27e0-5509-4fed-8eca-97794003c2df", - "Date" : "Mon, 23 Aug 2021 08:12:43 GMT", + "x-ms-correlation-request-id" : "4b370412-a490-4e18-8dd9-0b25624204e5", + "Date" : "Sun, 06 Mar 2022 06:27:52 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e2a0276f-de42-4aab-9cd9-bf8bb150382b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081243Z:281c27e0-5509-4fed-8eca-97794003c2df", + "client-request-id" : "83c4852d-20de-42d8-874d-b9c61ae7c0e1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062753Z:4b370412-a490-4e18-8dd9-0b25624204e5", "Expires" : "-1", - "x-ms-request-id" : "b1e0b289-f618-483e-bf1e-9f7e1cd52700", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "a7fb776a-25c1-48de-a5c6-1874a6ceae44", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e12b7aa4-493c-4f17-8a1b-8f593df8d6b6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e758164d-09b1-410e-9a8b-eea14f9e023b" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "d3ee8847-3466-4499-b178-3fca82f44e8c", - "Date" : "Mon, 23 Aug 2021 08:12:46 GMT", + "x-ms-correlation-request-id" : "0c597390-3a08-4886-80e2-c56641dd3a9d", + "Date" : "Sun, 06 Mar 2022 06:27:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e12b7aa4-493c-4f17-8a1b-8f593df8d6b6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081246Z:d3ee8847-3466-4499-b178-3fca82f44e8c", + "client-request-id" : "e758164d-09b1-410e-9a8b-eea14f9e023b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062754Z:0c597390-3a08-4886-80e2-c56641dd3a9d", "Expires" : "-1", - "x-ms-request-id" : "d690d9e1-ad12-4430-919c-687510bbfb7e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "9891569c-8dfb-43cf-8702-d2a69082c6c9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "09e34e0c-1e38-466f-8599-1dc4de97c7f5" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4f05a568-4acc-4bf9-a0f4-95f7ce94223a" }, "Response" : { "content-length" : "712", @@ -1466,27 +1385,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0be324e7-4f0e-4df2-87a6-2e0a6c749dff", - "Date" : "Mon, 23 Aug 2021 08:13:03 GMT", + "x-ms-correlation-request-id" : "adfac974-e042-4ecb-a409-84ff871eea17", + "Date" : "Sun, 06 Mar 2022 06:28:13 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "09e34e0c-1e38-466f-8599-1dc4de97c7f5", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081303Z:0be324e7-4f0e-4df2-87a6-2e0a6c749dff", + "client-request-id" : "4f05a568-4acc-4bf9-a0f4-95f7ce94223a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062814Z:adfac974-e042-4ecb-a409-84ff871eea17", "Expires" : "-1", - "x-ms-request-id" : "597f7ceb-6da6-4b8c-a5e7-744b7f864726", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "0f0dc9bd-88e7-4c2f-af9a-0c6041795313", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "96f31a9f-2200-4026-88d4-4d93f13ca477" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "60fa8abe-efda-4b50-bc78-d628ebc33bb1" }, "Response" : { "content-length" : "967", @@ -1496,81 +1415,81 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "x-ms-correlation-request-id" : "67a23d9f-37bb-4afc-a241-8bb18695109d", - "Date" : "Mon, 23 Aug 2021 08:13:13 GMT", + "x-ms-correlation-request-id" : "1733bedc-01dd-4389-8dd1-97f8e8e917b4", + "Date" : "Sun, 06 Mar 2022 06:28:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "96f31a9f-2200-4026-88d4-4d93f13ca477", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081314Z:67a23d9f-37bb-4afc-a241-8bb18695109d", + "client-request-id" : "60fa8abe-efda-4b50-bc78-d628ebc33bb1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062823Z:1733bedc-01dd-4389-8dd1-97f8e8e917b4", "Expires" : "-1", - "x-ms-request-id" : "4eece7db-6995-41c3-b880-d50f8e521696", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "4dfc1058-3528-4938-99c5-047ae85302a3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0add65a-6b86-4033-ae60-63f4f9169430" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "39886a7a-4c88-4265-9355-82d02a51fc69" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "c387e293-5d4f-4350-8c25-ca7f669c7889", - "Date" : "Mon, 23 Aug 2021 08:13:17 GMT", + "x-ms-correlation-request-id" : "39a59756-dc7d-4fb5-a9dd-c27fa8c23975", + "Date" : "Sun, 06 Mar 2022 06:28:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d0add65a-6b86-4033-ae60-63f4f9169430", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081317Z:c387e293-5d4f-4350-8c25-ca7f669c7889", + "client-request-id" : "39886a7a-4c88-4265-9355-82d02a51fc69", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062824Z:39a59756-dc7d-4fb5-a9dd-c27fa8c23975", "Expires" : "-1", - "x-ms-request-id" : "858dcfa2-dc3a-45f3-b15f-a7f55953d52d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c902a121-985f-461f-893e-49f38d51019e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a46a8371-82c3-4048-9ab2-5b73260f5426" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "94313d23-0bd5-4596-a584-a567529e0251" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2ea57d54-fde5-4be1-8da3-d64c541b8dad", - "Date" : "Mon, 23 Aug 2021 08:13:34 GMT", + "x-ms-correlation-request-id" : "d6b824ba-ea57-4805-9089-ab1ce7f494be", + "Date" : "Sun, 06 Mar 2022 06:28:43 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a46a8371-82c3-4048-9ab2-5b73260f5426", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081334Z:2ea57d54-fde5-4be1-8da3-d64c541b8dad", + "client-request-id" : "94313d23-0bd5-4596-a584-a567529e0251", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062844Z:d6b824ba-ea57-4805-9089-ab1ce7f494be", "Expires" : "-1", - "x-ms-request-id" : "d2202e1f-aa89-443f-b4f7-dd2e73ab9d41", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "3236674e-ffb4-46b0-8197-15492e45e2db", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "454928dc-c9f8-4b63-b81d-f1265a482ad2" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "86efb989-1213-418c-916e-7fb181abeece" }, "Response" : { "content-length" : "967", @@ -1580,81 +1499,81 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e1ca36f5-926f-4c9f-ae78-e642b07731a2", - "Date" : "Mon, 23 Aug 2021 08:13:44 GMT", + "x-ms-correlation-request-id" : "fe435a61-5219-4766-817a-d60c977295dd", + "Date" : "Sun, 06 Mar 2022 06:28:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "454928dc-c9f8-4b63-b81d-f1265a482ad2", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081344Z:e1ca36f5-926f-4c9f-ae78-e642b07731a2", + "client-request-id" : "86efb989-1213-418c-916e-7fb181abeece", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062854Z:fe435a61-5219-4766-817a-d60c977295dd", "Expires" : "-1", - "x-ms-request-id" : "81b9f9a8-240e-4fdb-9e0e-fc55654b426e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "1ed9f523-a65c-4034-909c-f0f694ea6043", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "73803707-837e-48b8-b747-db0fb92de752" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "cb90ced9-961c-4a8e-a2cc-993f59dc83a0" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "b6d229e6-df9c-4b2d-9211-86220b622207", - "Date" : "Mon, 23 Aug 2021 08:13:47 GMT", + "x-ms-correlation-request-id" : "e0f44374-7a69-4c51-8b43-960f86d7782d", + "Date" : "Sun, 06 Mar 2022 06:28:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "73803707-837e-48b8-b747-db0fb92de752", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081348Z:b6d229e6-df9c-4b2d-9211-86220b622207", + "client-request-id" : "cb90ced9-961c-4a8e-a2cc-993f59dc83a0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062855Z:e0f44374-7a69-4c51-8b43-960f86d7782d", "Expires" : "-1", - "x-ms-request-id" : "6f13e3a5-d23c-4c2a-8956-81bfb0d84e7c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "d4d892f1-fb0d-4d51-82dc-1e76689685c6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "777aa5ae-7080-4fef-8923-daf1ca5db668" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f7d5e2a9-8d81-4cb0-98d7-458c58fafbb4" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ab55293d-1361-4e44-afcd-f85e4698e767", - "Date" : "Mon, 23 Aug 2021 08:14:05 GMT", + "x-ms-correlation-request-id" : "4ef277df-6981-44b9-981f-4609739b020d", + "Date" : "Sun, 06 Mar 2022 06:29:14 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "777aa5ae-7080-4fef-8923-daf1ca5db668", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081405Z:ab55293d-1361-4e44-afcd-f85e4698e767", + "client-request-id" : "f7d5e2a9-8d81-4cb0-98d7-458c58fafbb4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062914Z:4ef277df-6981-44b9-981f-4609739b020d", "Expires" : "-1", - "x-ms-request-id" : "c0e0ca84-5145-4ff5-9100-231a280e5874", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "5d27e9bb-eb3c-4b55-bc3f-074f65d269a4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "061be852-209a-43e8-9d5f-5e4fe315fa4f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "447b85c3-c1b1-48d3-9190-a631928ddbf1" }, "Response" : { "content-length" : "967", @@ -1664,81 +1583,81 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "x-ms-correlation-request-id" : "4145d022-30df-48e8-8cab-f41a398da702", - "Date" : "Mon, 23 Aug 2021 08:14:15 GMT", + "x-ms-correlation-request-id" : "0837978c-218a-4279-ba44-34e0ec3981c4", + "Date" : "Sun, 06 Mar 2022 06:29:24 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "061be852-209a-43e8-9d5f-5e4fe315fa4f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081415Z:4145d022-30df-48e8-8cab-f41a398da702", + "client-request-id" : "447b85c3-c1b1-48d3-9190-a631928ddbf1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062924Z:0837978c-218a-4279-ba44-34e0ec3981c4", "Expires" : "-1", - "x-ms-request-id" : "02ebffae-3e5e-4a82-9c7d-7d3faa39202f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "44f1e2b9-9ef9-4d9c-9ca4-20720a582e5c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a50bcf74-ac31-4174-8aba-8d819eafeae3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c268a14f-f76c-4051-88ce-e5c3034b44ac" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "df053eea-9a09-4b63-be83-0fafb2890e01", - "Date" : "Mon, 23 Aug 2021 08:14:18 GMT", + "x-ms-correlation-request-id" : "ecfd7aa7-0725-416a-9058-2c484c1b2b1c", + "Date" : "Sun, 06 Mar 2022 06:29:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a50bcf74-ac31-4174-8aba-8d819eafeae3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081418Z:df053eea-9a09-4b63-be83-0fafb2890e01", + "client-request-id" : "c268a14f-f76c-4051-88ce-e5c3034b44ac", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062925Z:ecfd7aa7-0725-416a-9058-2c484c1b2b1c", "Expires" : "-1", - "x-ms-request-id" : "f454d5b9-9ad5-4b89-8c8e-84dfdcd325f3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "3827a0eb-7ce4-4730-9074-810410938874", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "39bc9635-2b2b-4b1c-b46a-b8f1a7ece549" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e64eeec8-3555-49d0-a06e-04dfe9769606" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", - "x-ms-correlation-request-id" : "cbb32804-5c4a-4a3f-a8f5-52c493a8b0b1", - "Date" : "Mon, 23 Aug 2021 08:14:35 GMT", + "x-ms-correlation-request-id" : "bae0668e-0842-49cf-bd5c-4cc4a5a7fa96", + "Date" : "Sun, 06 Mar 2022 06:29:44 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "39bc9635-2b2b-4b1c-b46a-b8f1a7ece549", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081436Z:cbb32804-5c4a-4a3f-a8f5-52c493a8b0b1", + "client-request-id" : "e64eeec8-3555-49d0-a06e-04dfe9769606", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062944Z:bae0668e-0842-49cf-bd5c-4cc4a5a7fa96", "Expires" : "-1", - "x-ms-request-id" : "f499ed7b-84b6-436f-9df8-957ba8762996", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "6e16f8c7-3aea-4340-b5dc-db82e8faf984", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93fab8c0-c09e-4636-b8b3-3d851da8c732" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e4bf72b3-df16-4b9f-9dc8-e228741cad36" }, "Response" : { "content-length" : "967", @@ -1748,81 +1667,81 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", - "x-ms-correlation-request-id" : "573d7f80-7303-4258-a0bb-bdea2a93e6cb", - "Date" : "Mon, 23 Aug 2021 08:14:45 GMT", + "x-ms-correlation-request-id" : "9ea604f5-fd74-47b3-a092-5fc46599d1fc", + "Date" : "Sun, 06 Mar 2022 06:29:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "93fab8c0-c09e-4636-b8b3-3d851da8c732", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081445Z:573d7f80-7303-4258-a0bb-bdea2a93e6cb", + "client-request-id" : "e4bf72b3-df16-4b9f-9dc8-e228741cad36", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062955Z:9ea604f5-fd74-47b3-a092-5fc46599d1fc", "Expires" : "-1", - "x-ms-request-id" : "077e5922-77d1-4776-9078-1ca218d35a0d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "3ac9307b-8f03-41af-8e71-5f38ec6c382e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a05f3e6-6a55-4709-874f-a235cccbdf20" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "32563bfc-99b6-4417-a03a-b8722a32edc2" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "4e39f463-5c06-49d5-a449-95775c9eb090", - "Date" : "Mon, 23 Aug 2021 08:14:49 GMT", + "x-ms-correlation-request-id" : "0674522d-890e-4b35-b5bc-8ff68998d70b", + "Date" : "Sun, 06 Mar 2022 06:29:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "5a05f3e6-6a55-4709-874f-a235cccbdf20", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081449Z:4e39f463-5c06-49d5-a449-95775c9eb090", + "client-request-id" : "32563bfc-99b6-4417-a03a-b8722a32edc2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062956Z:0674522d-890e-4b35-b5bc-8ff68998d70b", "Expires" : "-1", - "x-ms-request-id" : "5abcf60b-37fb-41f7-ac9c-89e2afca3bf7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "60ac01c3-f384-43ff-a434-eab21e1af2d4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d88a70ec-f3ca-4e2c-85a0-a95aafa49c2e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5ece6f0d-6290-4ebc-b6c8-4790dbbcc883" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ff15bfcc-c6c7-45be-82ea-22f9bab7c260", - "Date" : "Mon, 23 Aug 2021 08:15:06 GMT", + "x-ms-correlation-request-id" : "86c65c49-0331-4454-891f-e6e109bbc818", + "Date" : "Sun, 06 Mar 2022 06:30:14 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d88a70ec-f3ca-4e2c-85a0-a95aafa49c2e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081507Z:ff15bfcc-c6c7-45be-82ea-22f9bab7c260", + "client-request-id" : "5ece6f0d-6290-4ebc-b6c8-4790dbbcc883", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063015Z:86c65c49-0331-4454-891f-e6e109bbc818", "Expires" : "-1", - "x-ms-request-id" : "1419600a-b4ab-4e5b-9d85-51243f2e6a8e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "d1f37788-14ce-419d-96f8-4f6b8a66d97a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f210366-f012-496c-99a3-536560e8a1a4" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f88f299a-52d5-49c4-9018-d1898778142d" }, "Response" : { "content-length" : "967", @@ -1832,81 +1751,81 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2a889ef9-09af-4a0c-ad9d-7ba855fa0644", - "Date" : "Mon, 23 Aug 2021 08:15:16 GMT", + "x-ms-correlation-request-id" : "34aa101f-b0bc-43c1-a068-29cecb60c694", + "Date" : "Sun, 06 Mar 2022 06:30:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4f210366-f012-496c-99a3-536560e8a1a4", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081517Z:2a889ef9-09af-4a0c-ad9d-7ba855fa0644", + "client-request-id" : "f88f299a-52d5-49c4-9018-d1898778142d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063025Z:34aa101f-b0bc-43c1-a068-29cecb60c694", "Expires" : "-1", - "x-ms-request-id" : "1b048291-527c-4ab4-b7a3-338aa1391a28", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "c82e48a9-1556-4bb6-88e4-1cb74a51ccb9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "85ff0189-71dd-4d97-8a46-980cc773361c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "24e438a7-f4a8-47c7-a945-06a195495283" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "6f8a1e00-00d9-4ea1-b81f-2cd74cd72bf4", - "Date" : "Mon, 23 Aug 2021 08:15:19 GMT", + "x-ms-correlation-request-id" : "ee0da0e7-8aea-4ee2-8b19-40fe33292650", + "Date" : "Sun, 06 Mar 2022 06:30:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "85ff0189-71dd-4d97-8a46-980cc773361c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081520Z:6f8a1e00-00d9-4ea1-b81f-2cd74cd72bf4", + "client-request-id" : "24e438a7-f4a8-47c7-a945-06a195495283", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063026Z:ee0da0e7-8aea-4ee2-8b19-40fe33292650", "Expires" : "-1", - "x-ms-request-id" : "b33c7f7e-8897-41f2-9cc1-2dd66d11afbb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "307f1ff3-ae87-4150-b5cb-b2aa0b8ad4b5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4a165ce-d319-419c-91d0-07f7fb1e7431" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5067efc9-2a9f-46eb-b2b4-154c7f143a9f" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d96ecb2d-3876-49b2-a4bc-dfcb6ea94b62", - "Date" : "Mon, 23 Aug 2021 08:15:37 GMT", + "x-ms-correlation-request-id" : "b6c00259-8bac-4369-806d-c85558c966fd", + "Date" : "Sun, 06 Mar 2022 06:30:45 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d4a165ce-d319-419c-91d0-07f7fb1e7431", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081537Z:d96ecb2d-3876-49b2-a4bc-dfcb6ea94b62", + "client-request-id" : "5067efc9-2a9f-46eb-b2b4-154c7f143a9f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063045Z:b6c00259-8bac-4369-806d-c85558c966fd", "Expires" : "-1", - "x-ms-request-id" : "76f690af-4f9e-45dd-9317-31a3ac4b1165", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "43beebd7-060d-4a7c-9952-0813f4a68872", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "172ea560-3042-47f7-a5e9-057643c0d5b6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "35e04173-6098-4f9e-939b-a39c6797d2ef" }, "Response" : { "content-length" : "967", @@ -1916,81 +1835,81 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ae08d7dc-fa0a-4c0f-bd3d-4a29843ecc37", - "Date" : "Mon, 23 Aug 2021 08:15:46 GMT", + "x-ms-correlation-request-id" : "66f23e94-27f3-4618-ba7a-976257a496d9", + "Date" : "Sun, 06 Mar 2022 06:30:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "172ea560-3042-47f7-a5e9-057643c0d5b6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081547Z:ae08d7dc-fa0a-4c0f-bd3d-4a29843ecc37", + "client-request-id" : "35e04173-6098-4f9e-939b-a39c6797d2ef", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063056Z:66f23e94-27f3-4618-ba7a-976257a496d9", "Expires" : "-1", - "x-ms-request-id" : "54df99a0-b2ee-44f6-990c-198fe668b524", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "a8bcef64-3ee2-4972-be10-210424886597", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "428a7930-d5e3-4f71-a07d-e2d6f8ab3c04" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e16c4265-60c4-4874-af67-c31d0c936d0b" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "fc363d36-6e29-4f03-9a7a-c3314c423302", - "Date" : "Mon, 23 Aug 2021 08:15:51 GMT", + "x-ms-correlation-request-id" : "1cf1e01a-6513-4e12-95e3-65e5d8605a3f", + "Date" : "Sun, 06 Mar 2022 06:30:57 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "428a7930-d5e3-4f71-a07d-e2d6f8ab3c04", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081551Z:fc363d36-6e29-4f03-9a7a-c3314c423302", + "client-request-id" : "e16c4265-60c4-4874-af67-c31d0c936d0b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063057Z:1cf1e01a-6513-4e12-95e3-65e5d8605a3f", "Expires" : "-1", - "x-ms-request-id" : "e62b4c80-969c-45d8-8b0b-499b6e8e997a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "b3c5d554-587f-4c7b-bae1-7af77b632bd3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81c075cd-8f5a-4bed-83fd-1d61ea85bc98" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "793cda31-96f5-4b27-aa94-c90bee571282" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6b4b8042-51e6-48d1-a362-567ae1365f90", - "Date" : "Mon, 23 Aug 2021 08:16:08 GMT", + "x-ms-correlation-request-id" : "2d756730-7a20-4cb3-9168-15292893456b", + "Date" : "Sun, 06 Mar 2022 06:31:15 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "81c075cd-8f5a-4bed-83fd-1d61ea85bc98", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081608Z:6b4b8042-51e6-48d1-a362-567ae1365f90", + "client-request-id" : "793cda31-96f5-4b27-aa94-c90bee571282", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063116Z:2d756730-7a20-4cb3-9168-15292893456b", "Expires" : "-1", - "x-ms-request-id" : "31906d51-13fa-435d-afc7-b222d8881bfb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "2b108ee5-efb9-43ba-83cd-907c54be387d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "33a39818-d02a-4417-890d-f05b3bbeb753" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "20aaf205-7b1b-47ee-a66b-bc8f716a61df" }, "Response" : { "content-length" : "967", @@ -2000,81 +1919,81 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a4c3e08d-943d-49c2-8e5b-919966d37691", - "Date" : "Mon, 23 Aug 2021 08:16:18 GMT", + "x-ms-correlation-request-id" : "a3721ffb-b373-4457-9814-882dbcf818f0", + "Date" : "Sun, 06 Mar 2022 06:31:26 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "33a39818-d02a-4417-890d-f05b3bbeb753", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081618Z:a4c3e08d-943d-49c2-8e5b-919966d37691", + "client-request-id" : "20aaf205-7b1b-47ee-a66b-bc8f716a61df", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063126Z:a3721ffb-b373-4457-9814-882dbcf818f0", "Expires" : "-1", - "x-ms-request-id" : "16d18066-24f0-4ada-acf5-a46b2b969039", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "4def45d0-f89b-4a3b-8a7a-32df30603e13", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "215e3bba-b5e2-4f2c-a291-bc9d94a2b09e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "eeebae59-6272-45fe-b474-11e365ec2474" }, "Response" : { - "content-length" : "833", + "content-length" : "836", "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", - "x-ms-correlation-request-id" : "84f8104d-6d92-4855-b45c-bcfc7117f940", - "Date" : "Mon, 23 Aug 2021 08:16:21 GMT", + "x-ms-correlation-request-id" : "2c83fdb2-d032-4318-b274-48faf6a503f4", + "Date" : "Sun, 06 Mar 2022 06:31:27 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "215e3bba-b5e2-4f2c-a291-bc9d94a2b09e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081621Z:84f8104d-6d92-4855-b45c-bcfc7117f940", + "client-request-id" : "eeebae59-6272-45fe-b474-11e365ec2474", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063127Z:2c83fdb2-d032-4318-b274-48faf6a503f4", "Expires" : "-1", - "x-ms-request-id" : "4bfcd300-ada7-42c9-afbb-936a3ed142a3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "ceba9487-04d2-41a5-be77-7f4243f55bdc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0da96832-7c65-46ac-89ac-366a39160792" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b7cf4aca-8c45-4155-8407-50ee66dc040b" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", - "x-ms-correlation-request-id" : "41258261-4311-4b47-8f0f-ce1f256592c6", - "Date" : "Mon, 23 Aug 2021 08:16:38 GMT", + "x-ms-correlation-request-id" : "77372725-cf68-4606-99eb-bdc1db9669bc", + "Date" : "Sun, 06 Mar 2022 06:31:45 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "0da96832-7c65-46ac-89ac-366a39160792", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081639Z:41258261-4311-4b47-8f0f-ce1f256592c6", + "client-request-id" : "b7cf4aca-8c45-4155-8407-50ee66dc040b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063146Z:77372725-cf68-4606-99eb-bdc1db9669bc", "Expires" : "-1", - "x-ms-request-id" : "f1fe3df9-f240-44ae-8be6-08571c2de584", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "771d31ed-5eaa-4d06-85bf-561772c672cf", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac7c1cf9-296b-4117-a242-bc8574d2f865" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "af3d4716-7b94-44da-91fe-062c1954b7f5" }, "Response" : { "content-length" : "967", @@ -2084,310 +2003,310 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", - "x-ms-correlation-request-id" : "66bc6705-d6bc-4a97-9f88-077bb25e102d", - "Date" : "Mon, 23 Aug 2021 08:16:48 GMT", + "x-ms-correlation-request-id" : "20c01051-894d-4e6e-86d4-a1dec8053096", + "Date" : "Sun, 06 Mar 2022 06:31:56 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ac7c1cf9-296b-4117-a242-bc8574d2f865", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081648Z:66bc6705-d6bc-4a97-9f88-077bb25e102d", + "client-request-id" : "af3d4716-7b94-44da-91fe-062c1954b7f5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063156Z:20c01051-894d-4e6e-86d4-a1dec8053096", "Expires" : "-1", - "x-ms-request-id" : "3e3bbb0c-5925-49c9-b786-6fceff818411", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "71895ea6-3cb4-477f-a8f2-335388585ded", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f493feb-f2f9-4b8b-8cc7-1e73a90241f3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "65541a37-5ee3-4ee0-a9d7-751f170989a8" }, "Response" : { - "content-length" : "833", + "content-length" : "834", "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", - "x-ms-correlation-request-id" : "a32fcd4a-f89f-4843-adb8-2e4979e476ce", - "Date" : "Mon, 23 Aug 2021 08:16:51 GMT", + "x-ms-correlation-request-id" : "bc09db03-87fc-4ac0-aa45-1fdb092cf62f", + "Date" : "Sun, 06 Mar 2022 06:31:57 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4f493feb-f2f9-4b8b-8cc7-1e73a90241f3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081652Z:a32fcd4a-f89f-4843-adb8-2e4979e476ce", + "client-request-id" : "65541a37-5ee3-4ee0-a9d7-751f170989a8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063158Z:bc09db03-87fc-4ac0-aa45-1fdb092cf62f", "Expires" : "-1", - "x-ms-request-id" : "d744b57b-a61b-4585-a6d8-03ca3de61ee2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "8a0c6943-12a8-4008-b4a4-a7b90bcd682a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "11d8035c-c240-4911-b834-937c6c6c144e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bb820b85-6b60-48d3-8cb5-2342e7992490" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", - "x-ms-correlation-request-id" : "46161914-3b8c-43d0-b28b-9870d82d7359", - "Date" : "Mon, 23 Aug 2021 08:17:09 GMT", + "x-ms-correlation-request-id" : "e1ff40d9-e400-41fa-b48a-881cdb80a8cf", + "Date" : "Sun, 06 Mar 2022 06:32:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "11d8035c-c240-4911-b834-937c6c6c144e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081710Z:46161914-3b8c-43d0-b28b-9870d82d7359", + "client-request-id" : "bb820b85-6b60-48d3-8cb5-2342e7992490", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063216Z:e1ff40d9-e400-41fa-b48a-881cdb80a8cf", "Expires" : "-1", - "x-ms-request-id" : "9e5bedb9-4c5d-4171-99d5-b21ba2e5b6ba", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "fd3cee5c-a676-43cb-a2dc-d0f15b53bdc9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2e54d6fa-6834-45ff-87c3-0b20080f1014" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "638490bb-1fff-4362-a85d-df3da8b25d54" }, "Response" : { - "content-length" : "967", + "content-length" : "965", "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", - "x-ms-correlation-request-id" : "42f1ea62-1ec8-4a0e-8a69-5372dafa6eb2", - "Date" : "Mon, 23 Aug 2021 08:17:19 GMT", + "x-ms-correlation-request-id" : "efec11b9-b1eb-43b1-b11f-615c24851172", + "Date" : "Sun, 06 Mar 2022 06:32:26 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "2e54d6fa-6834-45ff-87c3-0b20080f1014", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081719Z:42f1ea62-1ec8-4a0e-8a69-5372dafa6eb2", + "client-request-id" : "638490bb-1fff-4362-a85d-df3da8b25d54", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063227Z:efec11b9-b1eb-43b1-b11f-615c24851172", "Expires" : "-1", - "x-ms-request-id" : "b838957f-00cc-49be-bb8a-4f53d63e9c98", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "2e9fb19a-6a74-4fcb-a92e-05ecb4fcdff2", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "87e672b6-c262-4732-aeec-03f23164a980" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "90a351f1-81ba-4b25-96cd-eb74211aca44" }, "Response" : { - "content-length" : "831", + "content-length" : "834", "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", - "x-ms-correlation-request-id" : "4d34dde4-8c67-4c8a-b843-7fc16b043779", - "Date" : "Mon, 23 Aug 2021 08:17:22 GMT", + "x-ms-correlation-request-id" : "85f2c7dc-1335-4017-bd78-f470fa5da68e", + "Date" : "Sun, 06 Mar 2022 06:32:28 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "87e672b6-c262-4732-aeec-03f23164a980", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081722Z:4d34dde4-8c67-4c8a-b843-7fc16b043779", + "client-request-id" : "90a351f1-81ba-4b25-96cd-eb74211aca44", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063228Z:85f2c7dc-1335-4017-bd78-f470fa5da68e", "Expires" : "-1", - "x-ms-request-id" : "b83b7bb1-f337-42ac-80f5-5750545b15d4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "4d0945d3-e129-411f-92da-3fd5e32eff02", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "72233b50-43da-4227-8ddd-313f6b096948" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f2917736-6f1a-4317-afb1-f52a7d17da43" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f41e4369-bdcd-4b71-a311-f276080a78f9", - "Date" : "Mon, 23 Aug 2021 08:17:40 GMT", + "x-ms-correlation-request-id" : "0abced0c-54a2-4318-a9ed-76837add133c", + "Date" : "Sun, 06 Mar 2022 06:32:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "72233b50-43da-4227-8ddd-313f6b096948", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081741Z:f41e4369-bdcd-4b71-a311-f276080a78f9", + "client-request-id" : "f2917736-6f1a-4317-afb1-f52a7d17da43", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063246Z:0abced0c-54a2-4318-a9ed-76837add133c", "Expires" : "-1", - "x-ms-request-id" : "8f061ada-5fde-4b0f-816c-9a3eb39ba219", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "d24cefdd-cb07-442b-bbb8-9d945224f15f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2aa5d8c-d183-426d-bf35-29510459f885" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "36c645f3-263e-4843-9f3f-cedca7e225f5" }, "Response" : { - "content-length" : "965", + "content-length" : "963", "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", - "x-ms-correlation-request-id" : "6396e3a0-35d6-4ffa-b90a-036dbeb69cf5", - "Date" : "Mon, 23 Aug 2021 08:17:49 GMT", + "x-ms-correlation-request-id" : "64756512-78a9-4e30-8d97-9fef79e3ce17", + "Date" : "Sun, 06 Mar 2022 06:32:57 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e2aa5d8c-d183-426d-bf35-29510459f885", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081749Z:6396e3a0-35d6-4ffa-b90a-036dbeb69cf5", + "client-request-id" : "36c645f3-263e-4843-9f3f-cedca7e225f5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063257Z:64756512-78a9-4e30-8d97-9fef79e3ce17", "Expires" : "-1", - "x-ms-request-id" : "57946d7e-b804-4287-a37d-756f1e6442ac", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "efb32d85-d846-43d1-bfd7-07672b522c02", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cce7870f-0dc1-41c0-a05f-0a367abeed46" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "925b5b93-7f1d-4c65-ab4b-89cc52a9b681" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "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", - "x-ms-correlation-request-id" : "fc84e1bf-1eb9-4272-b86b-82736d7d763d", - "Date" : "Mon, 23 Aug 2021 08:17:52 GMT", + "x-ms-correlation-request-id" : "619b336d-e4a0-4c9f-926e-32c2191ebe6b", + "Date" : "Sun, 06 Mar 2022 06:32:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cce7870f-0dc1-41c0-a05f-0a367abeed46", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081753Z:fc84e1bf-1eb9-4272-b86b-82736d7d763d", + "client-request-id" : "925b5b93-7f1d-4c65-ab4b-89cc52a9b681", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063259Z:619b336d-e4a0-4c9f-926e-32c2191ebe6b", "Expires" : "-1", - "x-ms-request-id" : "7d989bf3-1255-4f80-8be2-fe9bb1ce6dcf", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "f3c62e49-422f-427f-84ee-aad5a424511e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules/rule2?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules/rule1?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc66b53a-dd93-41ec-b964-f9b4a0b2c266", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1f53655b-0b87-4431-ab1a-e7b1efccbccf", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "311", + "content-length" : "309", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "3eac82a4-85e6-4b66-95bc-3f5d03c22e0b", - "Date" : "Mon, 23 Aug 2021 08:17:53 GMT", + "x-ms-correlation-request-id" : "f94d8fda-de0b-4896-872b-02b94cbd6eec", + "Date" : "Sun, 06 Mar 2022 06:32:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "dc66b53a-dd93-41ec-b964-f9b4a0b2c266", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081753Z:3eac82a4-85e6-4b66-95bc-3f5d03c22e0b", + "client-request-id" : "1f53655b-0b87-4431-ab1a-e7b1efccbccf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063259Z:f94d8fda-de0b-4896-872b-02b94cbd6eec", "Expires" : "-1", - "x-ms-request-id" : "bdf6b9d2-336e-4de5-9f4f-86bfd42ba38d", - "Body" : "{\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules/rule2\",\"name\":\"javacsmrc19834Third/rule2\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", + "x-ms-request-id" : "ea8a82ab-7cd0-449b-9ded-f3f86718e0e8", + "Body" : "{\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules/rule1\",\"name\":\"javacsmrc39095Third/rule1\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules/rule2?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules/rule1?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules/rule1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules/rule2?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "78fe24f2-b754-40ff-b17b-7ce1731ad0e6", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a7df625c-068e-4509-8354-eeeb63487354", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "309", + "content-length" : "311", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "763f903a-5299-434b-99d7-0610046528ed", - "Date" : "Mon, 23 Aug 2021 08:17:54 GMT", + "x-ms-correlation-request-id" : "e1b7fd39-3847-49fd-abbf-31eee3b04876", + "Date" : "Sun, 06 Mar 2022 06:32:59 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "78fe24f2-b754-40ff-b17b-7ce1731ad0e6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081754Z:763f903a-5299-434b-99d7-0610046528ed", + "client-request-id" : "a7df625c-068e-4509-8354-eeeb63487354", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063300Z:e1b7fd39-3847-49fd-abbf-31eee3b04876", "Expires" : "-1", - "x-ms-request-id" : "1aa8c1fd-63f9-4218-8cf7-1845eabdccf1", - "Body" : "{\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules/rule1\",\"name\":\"javacsmrc19834Third/rule1\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", + "x-ms-request-id" : "e28a1640-8172-40d7-b54c-624ddde53068", + "Body" : "{\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules/rule2\",\"name\":\"javacsmrc39095Third/rule2\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules/rule1?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules/rule2?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2dee6a30-ea00-4a46-a4a0-f553eb0f0846", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e6ce3fd3-9952-4a96-89a2-44913ea149cf", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "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", - "x-ms-correlation-request-id" : "0957ad0f-95b6-443e-8886-4e4506e58d88", - "Date" : "Mon, 23 Aug 2021 08:17:54 GMT", + "x-ms-correlation-request-id" : "cfdbb757-0880-4d24-b1e6-ed3824b0e0fc", + "Date" : "Sun, 06 Mar 2022 06:33:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "2dee6a30-ea00-4a46-a4a0-f553eb0f0846", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081755Z:0957ad0f-95b6-443e-8886-4e4506e58d88", + "client-request-id" : "e6ce3fd3-9952-4a96-89a2-44913ea149cf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063301Z:cfdbb757-0880-4d24-b1e6-ed3824b0e0fc", "Expires" : "-1", - "x-ms-request-id" : "83d7ef14-88eb-4288-8361-f40f5357898f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "6efabf56-0100-4a73-93e0-4ec7fdff4900", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a147634-b63a-4bac-aff3-e67e0ac2a0c9", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "583d045d-0502-4609-8e1f-d955e6414b7a", "Content-Type" : "application/json" }, "Response" : { @@ -2396,27 +2315,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", - "x-ms-correlation-request-id" : "3ad13b98-da1f-4841-ba6b-764c9ee66941", - "Date" : "Mon, 23 Aug 2021 08:17:54 GMT", + "x-ms-correlation-request-id" : "83af16b1-fbcb-4c17-9140-43bbd72d9b2c", + "Date" : "Sun, 06 Mar 2022 06:33:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "0a147634-b63a-4bac-aff3-e67e0ac2a0c9", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081755Z:3ad13b98-da1f-4841-ba6b-764c9ee66941", + "client-request-id" : "583d045d-0502-4609-8e1f-d955e6414b7a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063301Z:83af16b1-fbcb-4c17-9140-43bbd72d9b2c", "Expires" : "-1", - "x-ms-request-id" : "5d48e0b3-a7ea-4c54-986f-b7d272d5c6a8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule1\",\"name\":\"javacsmrc19834Third/rule1\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule2\",\"name\":\"javacsmrc19834Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}}]}", + "x-ms-request-id" : "3f815d09-cb3f-4be5-9b7d-5d2a9974e200", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule1\",\"name\":\"javacsmrc39095Third/rule1\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule2\",\"name\":\"javacsmrc39095Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4098d048-86d9-490a-95d7-813e6ac02c8a", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c877be51-e448-464a-987f-7d5ef2e07ece", "Content-Type" : "application/json" }, "Response" : { @@ -2425,55 +2344,55 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "404", - "x-ms-correlation-request-id" : "bcda0fb3-f1b5-4789-8e08-08c4eb7c6ac7", - "Date" : "Mon, 23 Aug 2021 08:17:55 GMT", + "x-ms-correlation-request-id" : "e2cd15c0-8f87-4630-872c-65651c7f1b19", + "Date" : "Sun, 06 Mar 2022 06:33:02 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4098d048-86d9-490a-95d7-813e6ac02c8a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081755Z:bcda0fb3-f1b5-4789-8e08-08c4eb7c6ac7", + "client-request-id" : "c877be51-e448-464a-987f-7d5ef2e07ece", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063302Z:e2cd15c0-8f87-4630-872c-65651c7f1b19", "Expires" : "-1", - "x-ms-request-id" : "2f2cd8c2-1428-4df4-a61a-e6e3de5060fc", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc19834Third'.\\r\\nRequestID=2f2cd8c2-1428-4df4-a61a-e6e3de5060fc\",\"target\":null}}", + "x-ms-request-id" : "de712e7c-e8bc-43a0-a075-d3dc599df8c2", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc39095Third'.\\r\\nRequestID=de712e7c-e8bc-43a0-a075-d3dc599df8c2\",\"target\":null}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "03bfbcfd-d08b-4f60-8d55-1b8405931059" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2ef18d45-f5fa-43f6-bbcb-f29246c6ad17" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", - "x-ms-correlation-request-id" : "89035f96-247e-4da0-bb58-c5925c384225", - "Date" : "Mon, 23 Aug 2021 08:18:11 GMT", + "x-ms-correlation-request-id" : "bd525175-e4f9-4d31-a2c8-32005f6aad28", + "Date" : "Sun, 06 Mar 2022 06:33:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "03bfbcfd-d08b-4f60-8d55-1b8405931059", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081811Z:89035f96-247e-4da0-bb58-c5925c384225", + "client-request-id" : "2ef18d45-f5fa-43f6-bbcb-f29246c6ad17", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063316Z:bd525175-e4f9-4d31-a2c8-32005f6aad28", "Expires" : "-1", - "x-ms-request-id" : "f5e79abb-b131-459a-8e98-d9373ddaafdc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "36f10205-88c0-4002-a3dd-0148607b0d0f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "57c8ddeb-544f-49fc-886d-395630317530" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2c288954-a574-4cd3-a7cf-153f0ed7bd63" }, "Response" : { "content-length" : "963", @@ -2483,740 +2402,745 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", - "x-ms-correlation-request-id" : "eb775970-fa51-41af-bfb4-6f22de6e6450", - "Date" : "Mon, 23 Aug 2021 08:18:20 GMT", + "x-ms-correlation-request-id" : "97ef400e-8991-43af-92c7-4dc33c368993", + "Date" : "Sun, 06 Mar 2022 06:33:27 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "57c8ddeb-544f-49fc-886d-395630317530", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081820Z:eb775970-fa51-41af-bfb4-6f22de6e6450", + "client-request-id" : "2c288954-a574-4cd3-a7cf-153f0ed7bd63", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063328Z:97ef400e-8991-43af-92c7-4dc33c368993", "Expires" : "-1", - "x-ms-request-id" : "a17daade-92ff-4da6-8fb8-f77e65657e50", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "e96f9288-f755-4c1c-906f-a23ff11fece6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e87be11d-7288-46f7-b206-fa7d819e324b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c8b34a56-b1c0-4268-ae7c-30d8c0e70170" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e998905e-2914-49d5-85ac-6b5e6ec7fc1c", - "Date" : "Mon, 23 Aug 2021 08:18:42 GMT", + "x-ms-correlation-request-id" : "1c7fe401-e10b-40a0-8a6b-4c54cbd23e22", + "Date" : "Sun, 06 Mar 2022 06:33:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e87be11d-7288-46f7-b206-fa7d819e324b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081842Z:e998905e-2914-49d5-85ac-6b5e6ec7fc1c", + "client-request-id" : "c8b34a56-b1c0-4268-ae7c-30d8c0e70170", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063347Z:1c7fe401-e10b-40a0-8a6b-4c54cbd23e22", "Expires" : "-1", - "x-ms-request-id" : "6c5f202f-7365-438d-b298-2f54e4eb0803", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "aeddddfa-f2b8-4a45-9dd8-109fa8c13321", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cea2f661-465b-4f13-a4c0-2dc9d7c1ffc5" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "89443d89-1162-4755-bf4d-0275b6d886ec" }, "Response" : { - "content-length" : "963", + "content-length" : "964", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", - "x-ms-correlation-request-id" : "11792533-a01e-4695-93b4-29c57ac760bd", - "Date" : "Mon, 23 Aug 2021 08:18:51 GMT", + "x-ms-correlation-request-id" : "6a0f3796-2871-43c6-8d2b-2b97c812a1d7", + "Date" : "Sun, 06 Mar 2022 06:33:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cea2f661-465b-4f13-a4c0-2dc9d7c1ffc5", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081851Z:11792533-a01e-4695-93b4-29c57ac760bd", + "client-request-id" : "89443d89-1162-4755-bf4d-0275b6d886ec", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063359Z:6a0f3796-2871-43c6-8d2b-2b97c812a1d7", "Expires" : "-1", - "x-ms-request-id" : "4b96290f-e3e2-4e53-b6cd-e77f183b539f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "4cf2be66-20c1-4892-ae80-4555c49b947c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second/patchSchedules/default?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "84c70b05-413c-4491-a110-c7ff9aefd2f3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e00db0d5-0d4c-4a6a-b868-592935a4a1f6", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "710", + "content-length" : "385", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", - "x-ms-correlation-request-id" : "33230519-2e96-4a2f-b816-4c4d6c5e9283", - "Date" : "Mon, 23 Aug 2021 08:19:13 GMT", + "x-ms-correlation-request-id" : "93bb5cdb-2625-42be-b6ef-ad9e943eb747", + "Date" : "Sun, 06 Mar 2022 06:33:59 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "84c70b05-413c-4491-a110-c7ff9aefd2f3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081913Z:33230519-2e96-4a2f-b816-4c4d6c5e9283", + "client-request-id" : "e00db0d5-0d4c-4a6a-b868-592935a4a1f6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063400Z:93bb5cdb-2625-42be-b6ef-ad9e943eb747", "Expires" : "-1", - "x-ms-request-id" : "3673336c-025c-4144-ba87-750cc1c09828", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "53b7140b-1b4a-47cd-bd24-cbd9166b73c0", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Sunday\",\"startHourUtc\":10,\"maintenanceWindow\":\"PT5H2M\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c44087d8-c2c5-430f-8529-ea559f63b4cd" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b3c65f9c-96fe-4da6-aac7-63f6c28253ed", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "963", + "content-length" : "964", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f6009554-6c0c-45ca-ada7-490846bf4317", - "Date" : "Mon, 23 Aug 2021 08:19:22 GMT", + "x-ms-correlation-request-id" : "5222ee03-a6c8-4922-aedd-b398a9568cab", + "Date" : "Sun, 06 Mar 2022 06:34:00 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c44087d8-c2c5-430f-8529-ea559f63b4cd", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081923Z:f6009554-6c0c-45ca-ada7-490846bf4317", + "client-request-id" : "b3c65f9c-96fe-4da6-aac7-63f6c28253ed", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063401Z:5222ee03-a6c8-4922-aedd-b398a9568cab", "Expires" : "-1", - "x-ms-request-id" : "7419a697-ce88-4575-8f98-101f40f12bb1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "9da2d186-d844-44ff-a48d-b7ea85d412a8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "85f085b2-a770-47c6-b4a5-1d6d4b462d6e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "773f965b-628b-49e7-9923-6a6af587ac2b", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "710", + "content-length" : "12", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8aaf19d5-c096-4d01-bb10-3db82cb9c455", - "Date" : "Mon, 23 Aug 2021 08:19:43 GMT", + "x-ms-correlation-request-id" : "c0b59d4a-fff7-4cb7-89c0-1fc197ed86fb", + "Date" : "Sun, 06 Mar 2022 06:34:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "85f085b2-a770-47c6-b4a5-1d6d4b462d6e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081944Z:8aaf19d5-c096-4d01-bb10-3db82cb9c455", + "client-request-id" : "773f965b-628b-49e7-9923-6a6af587ac2b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063402Z:c0b59d4a-fff7-4cb7-89c0-1fc197ed86fb", "Expires" : "-1", - "x-ms-request-id" : "2ac27827-9be9-479c-ac09-eee65bc26458", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "db60589d-38c1-4610-b7b2-c979d3f80b10", + "Body" : "{\"value\":[]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Second/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7a2a51f-84d3-4a28-a18a-384a3bc9f2be" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "45c7595c-6937-43ba-a17b-8fadf0378b99", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "964", + "content-length" : "397", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ed5d64e2-7e3d-44f7-82f8-1615443579cf", - "Date" : "Mon, 23 Aug 2021 08:19:53 GMT", + "x-ms-correlation-request-id" : "444d91a3-3ad8-4964-8059-07939e8c09d8", + "Date" : "Sun, 06 Mar 2022 06:34:02 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f7a2a51f-84d3-4a28-a18a-384a3bc9f2be", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081954Z:ed5d64e2-7e3d-44f7-82f8-1615443579cf", + "client-request-id" : "45c7595c-6937-43ba-a17b-8fadf0378b99", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063403Z:444d91a3-3ad8-4964-8059-07939e8c09d8", "Expires" : "-1", - "x-ms-request-id" : "4e7233e8-821b-464c-abda-1174816d8870", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "bbb4e282-8b33-4fb1-91ac-10e35b81d439", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Sunday\",\"startHourUtc\":10,\"maintenanceWindow\":\"PT5H2M\"}]}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second/patchSchedules/default?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f697a93c-cdad-4f85-9ac7-3b19ea0c6956", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8c283747-bf2c-4188-8074-1542bc567cc3" }, "Response" : { - "content-length" : "385", + "content-length" : "712", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", - "x-ms-correlation-request-id" : "138fcfb0-44a2-4f7a-a9da-85b9c3cb0e32", - "Date" : "Mon, 23 Aug 2021 08:19:54 GMT", + "x-ms-correlation-request-id" : "b61c4142-befc-4029-aaf8-c9eaaf372f17", + "Date" : "Sun, 06 Mar 2022 06:34:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f697a93c-cdad-4f85-9ac7-3b19ea0c6956", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081954Z:138fcfb0-44a2-4f7a-a9da-85b9c3cb0e32", + "client-request-id" : "8c283747-bf2c-4188-8074-1542bc567cc3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063417Z:b61c4142-befc-4029-aaf8-c9eaaf372f17", "Expires" : "-1", - "x-ms-request-id" : "202a2239-9da6-4396-a80b-afbada0636bd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Sunday\",\"startHourUtc\":10,\"maintenanceWindow\":\"PT5H2M\"}]}}", + "x-ms-request-id" : "a80050b7-0a3c-4de4-8d52-ff2a0f628b5c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "96e336d8-1e4b-44d3-9f04-d42c686cfb44", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d6fb6128-06ed-46f9-a471-c34d09dccd90" }, "Response" : { - "content-length" : "964", + "content-length" : "713", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e6c40557-f54e-4cca-a32d-ba6d1097562a", - "Date" : "Mon, 23 Aug 2021 08:19:55 GMT", + "x-ms-correlation-request-id" : "08d26e70-e894-4b8a-93ea-2ddf9c7b66ce", + "Date" : "Sun, 06 Mar 2022 06:34:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "96e336d8-1e4b-44d3-9f04-d42c686cfb44", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081956Z:e6c40557-f54e-4cca-a32d-ba6d1097562a", + "client-request-id" : "d6fb6128-06ed-46f9-a471-c34d09dccd90", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063447Z:08d26e70-e894-4b8a-93ea-2ddf9c7b66ce", "Expires" : "-1", - "x-ms-request-id" : "41095229-ef80-4497-b476-ee9e8858f344", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}}", + "x-ms-request-id" : "aa9b33cd-3b8d-49e8-a43a-ba3d9fc23053", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second/firewallRules?api-version=2020-12-01", + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6fb8a1d-5ca6-450c-8bfc-68f180b8355d", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9c768e62-8253-4878-9b13-a21bde7ed562", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "12", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", - "x-ms-correlation-request-id" : "b1355437-8d94-4b31-80f7-6d4bcf5c0a84", - "Date" : "Mon, 23 Aug 2021 08:19:55 GMT", + "x-ms-correlation-request-id" : "54224dbb-577a-4c84-9ef4-55bb165d79da", + "Date" : "Sun, 06 Mar 2022 06:34:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f6fb8a1d-5ca6-450c-8bfc-68f180b8355d", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081956Z:b1355437-8d94-4b31-80f7-6d4bcf5c0a84", + "client-request-id" : "9c768e62-8253-4878-9b13-a21bde7ed562", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063456Z:54224dbb-577a-4c84-9ef4-55bb165d79da", "Expires" : "-1", - "x-ms-request-id" : "3a788764-1361-4eb6-882a-3f51db0092de", - "Body" : "{\"value\":[]}", + "x-ms-request-id" : "be0390ea-45bc-49a8-a0db-3b5a4097776b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Second/patchSchedules?api-version=2020-12-01", + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules/rule1?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62d81eb5-6349-4b47-b898-e4109f63f2c2", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "82710a16-07fe-4ec6-b3da-80ea0b37dd89", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "397", + "content-length" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", "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", - "x-ms-correlation-request-id" : "0a84cb8b-c7c4-4d1a-a589-72b051e20eb9", - "Date" : "Mon, 23 Aug 2021 08:19:56 GMT", + "x-ms-correlation-request-id" : "9008857f-96e7-4691-9e3c-5e388353d78c", + "Date" : "Sun, 06 Mar 2022 06:34:57 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "62d81eb5-6349-4b47-b898-e4109f63f2c2", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T081956Z:0a84cb8b-c7c4-4d1a-a589-72b051e20eb9", + "client-request-id" : "82710a16-07fe-4ec6-b3da-80ea0b37dd89", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063457Z:9008857f-96e7-4691-9e3c-5e388353d78c", "Expires" : "-1", - "x-ms-request-id" : "10e2f52e-438c-4b05-9233-0ef6505ce5b7", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Sunday\",\"startHourUtc\":10,\"maintenanceWindow\":\"PT5H2M\"}]}}]}", - "Content-Type" : "application/json; charset=utf-8" + "x-ms-request-id" : "67c4404d-0f92-4f9e-baca-59456f3c132e" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules/rule3?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "897ede8e-78f7-456f-9c55-9f8c302e6e67" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6760cea5-3291-4684-b336-b4b13695d445", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "710", + "content-length" : "312", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "8e819969-83b8-4f88-a97a-5bf9e45f8725", - "Date" : "Mon, 23 Aug 2021 08:20:15 GMT", + "StatusCode" : "201", + "x-ms-correlation-request-id" : "9c2315b7-d6e3-4c2d-a94c-8e4687dfb87b", + "Date" : "Sun, 06 Mar 2022 06:34:56 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "897ede8e-78f7-456f-9c55-9f8c302e6e67", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082015Z:8e819969-83b8-4f88-a97a-5bf9e45f8725", + "client-request-id" : "6760cea5-3291-4684-b336-b4b13695d445", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063457Z:9c2315b7-d6e3-4c2d-a94c-8e4687dfb87b", "Expires" : "-1", - "x-ms-request-id" : "350468a4-3138-4ef7-988c-bc48c73ba307", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8" + "x-ms-request-id" : "96e54eed-4abd-41ec-ae39-ffb9d05bcda3", + "Body" : "{\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules/rule3\",\"name\":\"javacsmrc39095Third/rule3\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", + "Content-Type" : "application/json; charset=utf-8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules/rule3?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6da4388d-aceb-4f59-886b-fdff4b3e79a4" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0cb5f029-6253-4675-b86b-2544326b3856", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "710", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", - "x-ms-correlation-request-id" : "fcb0bab7-c4f7-4663-8650-58a99ea77ee8", - "Date" : "Mon, 23 Aug 2021 08:20:45 GMT", + "x-ms-correlation-request-id" : "1679c3c6-01be-48e4-98e3-92534c0621d2", + "Date" : "Sun, 06 Mar 2022 06:34:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "6da4388d-aceb-4f59-886b-fdff4b3e79a4", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082046Z:fcb0bab7-c4f7-4663-8650-58a99ea77ee8", + "client-request-id" : "0cb5f029-6253-4675-b86b-2544326b3856", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063458Z:1679c3c6-01be-48e4-98e3-92534c0621d2", "Expires" : "-1", - "x-ms-request-id" : "fd1ff098-698d-406d-9538-b56845d8efec", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "bcab5bab-b2f4-42f9-bd40-d3a7cd0846a5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3df49b7e-cc32-4dad-9c90-d5d5054d87cf" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "21ad60c1-c04b-4d5b-9590-f5fd671ca5ae", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "711", + "content-length" : "946", "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", - "x-ms-correlation-request-id" : "14bb1475-051d-46cd-b362-4153502fd133", - "Date" : "Mon, 23 Aug 2021 08:21:16 GMT", + "x-ms-correlation-request-id" : "08b31a27-22b5-4fd0-973c-fc09d5f953f5", + "Date" : "Sun, 06 Mar 2022 06:34:59 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "3df49b7e-cc32-4dad-9c90-d5d5054d87cf", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082117Z:14bb1475-051d-46cd-b362-4153502fd133", + "client-request-id" : "21ad60c1-c04b-4d5b-9590-f5fd671ca5ae", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063459Z:08b31a27-22b5-4fd0-973c-fc09d5f953f5", "Expires" : "-1", - "x-ms-request-id" : "5dec4756-787b-4e1a-95fa-e9e0560d3d2c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "7583e462-cd36-4547-8950-a69cf2001787", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule1\",\"name\":\"javacsmrc39095Third/rule1\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule2\",\"name\":\"javacsmrc39095Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule3\",\"name\":\"javacsmrc39095Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf8073a7-4626-41fa-8369-da8b0b6c5fdd", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "13f83e16-15e6-4342-9060-517a11f0fea1", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "187", "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", - "x-ms-correlation-request-id" : "b0a19397-ddda-476e-a130-92c9a36b4f64", - "Date" : "Mon, 23 Aug 2021 08:21:21 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "StatusCode" : "404", + "x-ms-correlation-request-id" : "c43c98d7-659d-47f5-b18d-3f32906337ee", + "Date" : "Sun, 06 Mar 2022 06:34:59 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cf8073a7-4626-41fa-8369-da8b0b6c5fdd", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082121Z:b0a19397-ddda-476e-a130-92c9a36b4f64", + "client-request-id" : "13f83e16-15e6-4342-9060-517a11f0fea1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063500Z:c43c98d7-659d-47f5-b18d-3f32906337ee", "Expires" : "-1", - "x-ms-request-id" : "4e5ba70c-f72a-4a15-865f-b6e5bb6f70da", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "058141ef-4ece-40f5-9130-37696b89022e", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc39095Third'.\\r\\nRequestID=058141ef-4ece-40f5-9130-37696b89022e\",\"target\":null}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules/rule3?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "81679fdf-0778-43fa-b5d7-4aede596b554", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2644f39c-26b0-43c9-bcf2-1855d2cb8e1f", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "312", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "980018f7-952b-4f38-84b4-2a159d396c69", - "Date" : "Mon, 23 Aug 2021 08:21:21 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "c6da4d5e-b922-4ef6-9dab-3e9bbcc4151e", + "Date" : "Sun, 06 Mar 2022 06:35:10 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "81679fdf-0778-43fa-b5d7-4aede596b554", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082122Z:980018f7-952b-4f38-84b4-2a159d396c69", + "client-request-id" : "2644f39c-26b0-43c9-bcf2-1855d2cb8e1f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063510Z:c6da4d5e-b922-4ef6-9dab-3e9bbcc4151e", "Expires" : "-1", - "x-ms-request-id" : "b2e698bc-4bd4-4086-926d-a91149521678", - "Body" : "{\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules/rule3\",\"name\":\"javacsmrc19834Third/rule3\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules/rule3?api-version=2020-12-01" + "x-ms-request-id" : "9c148449-b6f8-42b8-af6f-7c7b772ecc5d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules/rule1?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "732d3f40-bb66-438b-af67-c7163a8cbf85", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "270a7209-f5ef-4b85-8d5e-1319efa5171f", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "content-length" : "636", "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", - "x-ms-correlation-request-id" : "a50f0421-9005-4b04-a475-72e956c56275", - "Date" : "Mon, 23 Aug 2021 08:21:22 GMT", + "x-ms-correlation-request-id" : "031b633a-935f-4e95-9ed6-1b4f492751c3", + "Date" : "Sun, 06 Mar 2022 06:35:10 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "732d3f40-bb66-438b-af67-c7163a8cbf85", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082122Z:a50f0421-9005-4b04-a475-72e956c56275", + "client-request-id" : "270a7209-f5ef-4b85-8d5e-1319efa5171f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063510Z:031b633a-935f-4e95-9ed6-1b4f492751c3", "Expires" : "-1", - "x-ms-request-id" : "4eac72cb-b976-4d8c-8d98-f003554c041e" + "x-ms-request-id" : "9510e405-c622-42c3-9006-2d071b4cdc03", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule2\",\"name\":\"javacsmrc39095Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule3\",\"name\":\"javacsmrc39095Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", + "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b2501a7-ea41-4800-8fe8-c31dc70a4aac", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "517c1b68-f2e3-4257-82d7-92de562754ed", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "187", "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", - "x-ms-correlation-request-id" : "becf9e13-c11a-4f79-8f15-93b89ba0c76f", - "Date" : "Mon, 23 Aug 2021 08:21:22 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", + "StatusCode" : "404", + "x-ms-correlation-request-id" : "f2953173-e006-4c25-ab81-756b02b8da6a", + "Date" : "Sun, 06 Mar 2022 06:35:11 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8b2501a7-ea41-4800-8fe8-c31dc70a4aac", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082123Z:becf9e13-c11a-4f79-8f15-93b89ba0c76f", + "client-request-id" : "517c1b68-f2e3-4257-82d7-92de562754ed", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063511Z:f2953173-e006-4c25-ab81-756b02b8da6a", "Expires" : "-1", - "x-ms-request-id" : "103794fb-5afb-4717-8194-6e6bf0dd51da", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "3d7cbf6e-cc7d-47d9-ba6a-61018e223add", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc39095Third'.\\r\\nRequestID=3d7cbf6e-cc7d-47d9-ba6a-61018e223add\",\"target\":null}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules?api-version=2020-12-01", + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "250436f8-3fe0-4436-ae14-0cb262527988", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "500f4a73-c23b-4b24-9ce3-9c1e0fcdace4", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "946", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", - "x-ms-correlation-request-id" : "205de951-ffd6-4486-afff-177c2ffaf59c", - "Date" : "Mon, 23 Aug 2021 08:21:22 GMT", + "x-ms-correlation-request-id" : "6e62d7bc-6941-40ba-a0fa-cf967f2139ab", + "Date" : "Sun, 06 Mar 2022 06:35:14 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "250436f8-3fe0-4436-ae14-0cb262527988", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082123Z:205de951-ffd6-4486-afff-177c2ffaf59c", + "client-request-id" : "500f4a73-c23b-4b24-9ce3-9c1e0fcdace4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063515Z:6e62d7bc-6941-40ba-a0fa-cf967f2139ab", "Expires" : "-1", - "x-ms-request-id" : "ab2fbe45-39b2-43d3-9323-289f87bff990", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule1\",\"name\":\"javacsmrc19834Third/rule1\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule2\",\"name\":\"javacsmrc19834Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule3\",\"name\":\"javacsmrc19834Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", + "x-ms-request-id" : "08575d53-70ae-46b4-96ae-26d9b70cb6fe", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e776a04-b623-4d16-9db6-e1cab5c45e2e", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "746544e0-1320-4b32-8086-0aea6c162a2c", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "187", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", - "StatusCode" : "404", - "x-ms-correlation-request-id" : "ad07e1e5-7425-40e2-9100-41f86e1c123e", - "Date" : "Mon, 23 Aug 2021 08:21:23 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "d7dc5d43-7189-41e4-a5f9-9f0a8ac8c14c", + "Date" : "Sun, 06 Mar 2022 06:35:14 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "3e776a04-b623-4d16-9db6-e1cab5c45e2e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082123Z:ad07e1e5-7425-40e2-9100-41f86e1c123e", + "client-request-id" : "746544e0-1320-4b32-8086-0aea6c162a2c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063515Z:d7dc5d43-7189-41e4-a5f9-9f0a8ac8c14c", "Expires" : "-1", - "x-ms-request-id" : "d2f9e021-5601-4dc5-894a-05bd17c1ffcd", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc19834Third'.\\r\\nRequestID=d2f9e021-5601-4dc5-894a-05bd17c1ffcd\",\"target\":null}}", + "x-ms-request-id" : "c607dc95-93ac-4ff0-a0f6-e00d951bd2fb", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4537678-7711-4414-b84b-f2eca71c3883", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b9a5f84c-ba7f-4af2-a340-0093f74a2f9d", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "636", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", - "x-ms-correlation-request-id" : "3b8a3bc5-79e7-424c-a0c9-88548a0821f8", - "Date" : "Mon, 23 Aug 2021 08:21:54 GMT", + "x-ms-correlation-request-id" : "991ccfc8-1d29-4c6e-b0d6-61b5a52877b1", + "Date" : "Sun, 06 Mar 2022 06:35:15 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c4537678-7711-4414-b84b-f2eca71c3883", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082154Z:3b8a3bc5-79e7-424c-a0c9-88548a0821f8", + "client-request-id" : "b9a5f84c-ba7f-4af2-a340-0093f74a2f9d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063516Z:991ccfc8-1d29-4c6e-b0d6-61b5a52877b1", "Expires" : "-1", - "x-ms-request-id" : "25f44f59-ec0a-4bc2-8b81-7a2ce5f731ad", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "54c939a6-e663-4281-9610-1d4305ba31eb", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule2\",\"name\":\"javacsmrc39095Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule3\",\"name\":\"javacsmrc39095Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1105719-4ced-4c04-969f-5f37ef422f56", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8366ec5f-afa8-4556-af0f-3ae1e567c887", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "636", + "content-length" : "187", "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", - "x-ms-correlation-request-id" : "dca66b30-8a9e-4682-91e7-120a27aa1ea2", - "Date" : "Mon, 23 Aug 2021 08:21:54 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "StatusCode" : "404", + "x-ms-correlation-request-id" : "ed4d323a-aece-4f91-9501-d66ca4cfe021", + "Date" : "Sun, 06 Mar 2022 06:35:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f1105719-4ced-4c04-969f-5f37ef422f56", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082154Z:dca66b30-8a9e-4682-91e7-120a27aa1ea2", + "client-request-id" : "8366ec5f-afa8-4556-af0f-3ae1e567c887", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063516Z:ed4d323a-aece-4f91-9501-d66ca4cfe021", "Expires" : "-1", - "x-ms-request-id" : "5660abac-d67d-425c-9e75-b0d1db6bff84", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule2\",\"name\":\"javacsmrc19834Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule3\",\"name\":\"javacsmrc19834Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", + "x-ms-request-id" : "546695ea-e15f-42a4-acf0-04a6753a792f", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc39095Third'.\\r\\nRequestID=546695ea-e15f-42a4-acf0-04a6753a792f\",\"target\":null}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/patchSchedules?api-version=2020-12-01", + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "632ffbc6-281a-4479-947f-49f4c95eea9e", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "49e39154-665d-4458-9b1e-912a43ae19c2", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "187", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", - "StatusCode" : "404", - "x-ms-correlation-request-id" : "45bebae6-36c2-4555-9edf-c2ae5e99746e", - "Date" : "Mon, 23 Aug 2021 08:21:54 GMT", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "4e586f28-24d8-4cc0-b120-dbeb736bcc4c", + "Date" : "Sun, 06 Mar 2022 06:35:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "632ffbc6-281a-4479-947f-49f4c95eea9e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082155Z:45bebae6-36c2-4555-9edf-c2ae5e99746e", + "client-request-id" : "49e39154-665d-4458-9b1e-912a43ae19c2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063519Z:4e586f28-24d8-4cc0-b120-dbeb736bcc4c", "Expires" : "-1", - "x-ms-request-id" : "934fd37e-0896-477e-a0df-48ac0ec4ee43", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc19834Third'.\\r\\nRequestID=934fd37e-0896-477e-a0df-48ac0ec4ee43\",\"target\":null}}", + "x-ms-request-id" : "34669f2e-af76-4c23-9a1d-b1df31adfe09", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea7f9aeb-7fc5-4f82-8693-56d944122904", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a4916a2e-27dd-46d6-843c-5061922344f1", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d4bdb56-1e76-4087-bc6b-3fe8705f1f03", - "Date" : "Mon, 23 Aug 2021 08:21:56 GMT", + "x-ms-correlation-request-id" : "3431c77f-b812-41bb-8d80-693bbdac0298", + "Date" : "Sun, 06 Mar 2022 06:35:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ea7f9aeb-7fc5-4f82-8693-56d944122904", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082157Z:8d4bdb56-1e76-4087-bc6b-3fe8705f1f03", + "client-request-id" : "a4916a2e-27dd-46d6-843c-5061922344f1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063519Z:3431c77f-b812-41bb-8d80-693bbdac0298", "Expires" : "-1", - "x-ms-request-id" : "fb495901-4df1-4fa9-8a99-99f3ea51a393", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "64dc3aa4-8f2e-448e-9c56-edec5b1c05b7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "41ded698-377e-40d8-9e2c-c5437f2dfb9f", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9f96f87d-379b-46b5-92ce-e4f5b6e9f252", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "636", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ddaeeb0a-d1ef-4199-b35e-e4dfbca2ee7d", - "Date" : "Mon, 23 Aug 2021 08:21:57 GMT", + "x-ms-correlation-request-id" : "59bd561c-1b3b-4904-a535-c0bf5f05c12a", + "Date" : "Sun, 06 Mar 2022 06:35:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "41ded698-377e-40d8-9e2c-c5437f2dfb9f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082157Z:ddaeeb0a-d1ef-4199-b35e-e4dfbca2ee7d", + "client-request-id" : "9f96f87d-379b-46b5-92ce-e4f5b6e9f252", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063520Z:59bd561c-1b3b-4904-a535-c0bf5f05c12a", "Expires" : "-1", - "x-ms-request-id" : "d9560176-174a-449c-97bb-0e90597a58f3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "65259910-42ae-4e10-89ac-caabf88d63c5", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule2\",\"name\":\"javacsmrc39095Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule3\",\"name\":\"javacsmrc39095Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "18a1ef07-656b-4c87-88e4-afc1682d1b0d", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "734a1c7e-f845-47e4-9165-4fe36efda6f1", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "636", + "content-length" : "187", "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", - "x-ms-correlation-request-id" : "45cc5aea-3d4c-49c5-ac45-e6af2bf2a5f0", - "Date" : "Mon, 23 Aug 2021 08:21:57 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", + "StatusCode" : "404", + "x-ms-correlation-request-id" : "543082e5-8196-4981-8b6b-1e6c60771d0e", + "Date" : "Sun, 06 Mar 2022 06:35:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "18a1ef07-656b-4c87-88e4-afc1682d1b0d", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082158Z:45cc5aea-3d4c-49c5-ac45-e6af2bf2a5f0", + "client-request-id" : "734a1c7e-f845-47e4-9165-4fe36efda6f1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063520Z:543082e5-8196-4981-8b6b-1e6c60771d0e", "Expires" : "-1", - "x-ms-request-id" : "9d3120ce-7fde-41df-ab8f-a7e47f8b1b09", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule2\",\"name\":\"javacsmrc19834Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule3\",\"name\":\"javacsmrc19834Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", + "x-ms-request-id" : "1b11ce1e-9192-4a35-aa2f-d25371ec8fd9", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc39095Third'.\\r\\nRequestID=1b11ce1e-9192-4a35-aa2f-d25371ec8fd9\",\"target\":null}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "efa10ceb-6c77-437d-af6d-93c39e303da2", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f84d4dc2-a6cd-44e7-a181-2c532593913f", "Content-Type" : "application/json" }, "Response" : { @@ -3225,85 +3149,114 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "404", - "x-ms-correlation-request-id" : "5288c6da-d4c4-4447-b6c7-d4864ab4aa01", - "Date" : "Mon, 23 Aug 2021 08:21:58 GMT", + "x-ms-correlation-request-id" : "9bc042b3-8b8e-49b7-93a2-9a17c84c11fb", + "Date" : "Sun, 06 Mar 2022 06:35:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "efa10ceb-6c77-437d-af6d-93c39e303da2", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082158Z:5288c6da-d4c4-4447-b6c7-d4864ab4aa01", + "client-request-id" : "f84d4dc2-a6cd-44e7-a181-2c532593913f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063520Z:9bc042b3-8b8e-49b7-93a2-9a17c84c11fb", "Expires" : "-1", - "x-ms-request-id" : "ae0a259c-e122-4a2a-bc95-11576b1ba6de", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc19834Third'.\\r\\nRequestID=ae0a259c-e122-4a2a-bc95-11576b1ba6de\",\"target\":null}}", + "x-ms-request-id" : "835fe1fb-6ee9-49ec-80ce-5d198ec1b8d5", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc39095Third'.\\r\\nRequestID=835fe1fb-6ee9-49ec-80ce-5d198ec1b8d5\",\"target\":null}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e28eaf0-7faa-4bca-9dda-f28457a4727f", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2bb81dd9-19e4-497d-bc56-932253001309", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "Pragma" : "no-cache", + "retry-after" : "0", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "4229cc7b-5a8c-42c0-8107-d08a8399c862", + "Date" : "Sun, 06 Mar 2022 06:35:26 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "2bb81dd9-19e4-497d-bc56-932253001309", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063526Z:4229cc7b-5a8c-42c0-8107-d08a8399c862", + "Expires" : "-1", + "x-ms-request-id" : "9eabe104-9564-4590-89f2-e36b86e8ee6f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/patchSchedules/default?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8cc8da0f-fd87-4a9a-b4c2-a1c882638350", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "448", + "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", - "x-ms-correlation-request-id" : "a24127e9-a140-467a-9db7-bb33de3ff3b5", - "Date" : "Mon, 23 Aug 2021 08:22:03 GMT", + "x-ms-correlation-request-id" : "1ad803e2-bed4-4411-bdd1-e25444719258", + "Date" : "Sun, 06 Mar 2022 06:35:26 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "0e28eaf0-7faa-4bca-9dda-f28457a4727f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082203Z:a24127e9-a140-467a-9db7-bb33de3ff3b5", + "client-request-id" : "8cc8da0f-fd87-4a9a-b4c2-a1c882638350", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063527Z:1ad803e2-bed4-4411-bdd1-e25444719258", "Expires" : "-1", - "x-ms-request-id" : "80e29a90-2190-4550-a6cd-0f24d3d14e25", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "1697404e-60d0-4749-aa15-da20543d5657", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":1,\"maintenanceWindow\":\"PT5H\"},{\"dayOfWeek\":\"Tuesday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "0185fb09-1c50-4603-b46c-2a6c97de5951", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ca7f3762-91bb-4a5f-8765-ff6b08d96beb", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "835", "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", - "x-ms-correlation-request-id" : "d277b53d-bfce-4c1f-955f-a3105062d4e0", - "Date" : "Mon, 23 Aug 2021 08:22:03 GMT", + "x-ms-correlation-request-id" : "215b01cd-c0a5-4787-818a-14c6b837e5a4", + "Date" : "Sun, 06 Mar 2022 06:35:27 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "0185fb09-1c50-4603-b46c-2a6c97de5951", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082204Z:d277b53d-bfce-4c1f-955f-a3105062d4e0", + "client-request-id" : "ca7f3762-91bb-4a5f-8765-ff6b08d96beb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063527Z:215b01cd-c0a5-4787-818a-14c6b837e5a4", "Expires" : "-1", - "x-ms-request-id" : "0f76ef26-2331-440b-880c-4640d63169a6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "15652a13-4dd5-4354-86e2-91e4eafaa1a2", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bb2b99f4-1da2-4e65-8c0d-e126f3d42b64", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5dc09aad-6298-450b-9587-3cbddda7ffdc", "Content-Type" : "application/json" }, "Response" : { @@ -3314,25 +3267,110 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ff1124a-807c-4a04-aec4-08644676552b", - "Date" : "Mon, 23 Aug 2021 08:22:04 GMT", + "x-ms-correlation-request-id" : "fbd62252-df1f-44b9-a8b5-8d9e4dfc8e0a", + "Date" : "Sun, 06 Mar 2022 06:35:27 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "bb2b99f4-1da2-4e65-8c0d-e126f3d42b64", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082204Z:7ff1124a-807c-4a04-aec4-08644676552b", + "client-request-id" : "5dc09aad-6298-450b-9587-3cbddda7ffdc", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063527Z:fbd62252-df1f-44b9-a8b5-8d9e4dfc8e0a", "Expires" : "-1", - "x-ms-request-id" : "35ca6b2f-e9fa-426b-b842-d7246cb84a1a", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule2\",\"name\":\"javacsmrc19834Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule3\",\"name\":\"javacsmrc19834Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", + "x-ms-request-id" : "1a96682a-c620-44ea-9305-0d04f76164bf", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule2\",\"name\":\"javacsmrc39095Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/firewallRules/rule3\",\"name\":\"javacsmrc39095Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/patchSchedules?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "45707f35-b4e6-47e3-84dd-3e3f393fe108", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "460", + "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", + "x-ms-correlation-request-id" : "1e9acc0b-4e27-4c6e-9728-7045440ea11a", + "Date" : "Sun, 06 Mar 2022 06:35:27 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "45707f35-b4e6-47e3-84dd-3e3f393fe108", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063528Z:1e9acc0b-4e27-4c6e-9728-7045440ea11a", + "Expires" : "-1", + "x-ms-request-id" : "a35519d0-f1d9-40e7-b8a2-966bbfa5a5f8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":1,\"maintenanceWindow\":\"PT5H\"},{\"dayOfWeek\":\"Tuesday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/forceReboot?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2820b558-367f-4860-ac0e-5595cc7027f6", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "127", + "Server" : "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" : "90271afc-37e3-46b9-9ea8-9e1c92b3dc44", + "Date" : "Sun, 06 Mar 2022 06:35:29 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "2820b558-367f-4860-ac0e-5595cc7027f6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063529Z:90271afc-37e3-46b9-9ea8-9e1c92b3dc44", + "Expires" : "-1", + "x-ms-request-id" : "d43d321c-c83f-4678-a8d8-a69970c9d42f", + "Body" : "{\r\n \"message\": \"The requested reboot operation for 'Value' has been successfully scheduled and should be executed shortly.\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/patchSchedules/default?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8905a88b-d835-45e7-990b-74e4f8b37078", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a4771780-f188-4c3f-b1a0-e9d370aec00f", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "0", + "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", + "x-ms-correlation-request-id" : "0f281076-26a2-400f-9f20-74b86f680f81", + "Date" : "Sun, 06 Mar 2022 06:35:29 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "a4771780-f188-4c3f-b1a0-e9d370aec00f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063529Z:0f281076-26a2-400f-9f20-74b86f680f81", + "Expires" : "-1", + "x-ms-request-id" : "f6f09fcb-f939-4694-ace3-074bef1140b5" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/patchSchedules?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c876e246-f958-443c-9a3c-fa54d19715e6", "Content-Type" : "application/json" }, "Response" : { @@ -3343,398 +3381,576 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "404", - "x-ms-correlation-request-id" : "f3cf8582-b3b3-4bed-9084-a4cc3a892c4c", - "Date" : "Mon, 23 Aug 2021 08:22:04 GMT", + "x-ms-correlation-request-id" : "4d4fb783-3d7d-4d7f-b198-1b161ce400cb", + "Date" : "Sun, 06 Mar 2022 06:35:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8905a88b-d835-45e7-990b-74e4f8b37078", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082204Z:f3cf8582-b3b3-4bed-9084-a4cc3a892c4c", + "client-request-id" : "c876e246-f958-443c-9a3c-fa54d19715e6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063530Z:4d4fb783-3d7d-4d7f-b198-1b161ce400cb", "Expires" : "-1", - "x-ms-request-id" : "a817d035-3b69-4831-b6aa-eaf7b1c02d6a", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc19834Third'.\\r\\nRequestID=a817d035-3b69-4831-b6aa-eaf7b1c02d6a\",\"target\":null}}", + "x-ms-request-id" : "89a87afa-cf5b-42e6-988a-8983d322f46a", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc39095Third'.\\r\\nRequestID=89a87afa-cf5b-42e6-988a-8983d322f46a\",\"target\":null}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1427dcb-e39d-4446-924b-2f4cded00b4f", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7ef8e5f6-6699-4fb3-8e3a-39d7a765a1ac", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "187", + "content-length" : "835", "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", + "x-ms-correlation-request-id" : "fe1c0a28-a613-45f9-8303-3b7cd3a0594b", + "Date" : "Sun, 06 Mar 2022 06:35:30 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "7ef8e5f6-6699-4fb3-8e3a-39d7a765a1ac", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063530Z:fe1c0a28-a613-45f9-8303-3b7cd3a0594b", + "Expires" : "-1", + "x-ms-request-id" : "4c8baaae-bb56-4865-a24e-5ee1701b7e7b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/redis/javacsmrc39095Third/patchSchedules?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d58e059d-4ca1-415a-9b81-df7ef77ddf09", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "187", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "404", - "x-ms-correlation-request-id" : "2a263981-abbe-4fd5-91bc-2ee9a651bb59", - "Date" : "Mon, 23 Aug 2021 08:22:04 GMT", + "x-ms-correlation-request-id" : "8fe5ddef-3749-48d4-8dcb-570f8c45371b", + "Date" : "Sun, 06 Mar 2022 06:35:30 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e1427dcb-e39d-4446-924b-2f4cded00b4f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082205Z:2a263981-abbe-4fd5-91bc-2ee9a651bb59", + "client-request-id" : "d58e059d-4ca1-415a-9b81-df7ef77ddf09", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063531Z:8fe5ddef-3749-48d4-8dcb-570f8c45371b", "Expires" : "-1", - "x-ms-request-id" : "5ccccaf6-2106-42c8-9b26-8ab532f0aa27", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc19834Third'.\\r\\nRequestID=5ccccaf6-2106-42c8-9b26-8ab532f0aa27\",\"target\":null}}", + "x-ms-request-id" : "9c6494b2-f562-4dd8-977c-c5b0336c2d18", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc39095Third'.\\r\\nRequestID=9c6494b2-f562-4dd8-977c-c5b0336c2d18\",\"target\":null}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f190b22a-9e61-4456-858c-f4bc7cbc31aa", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f383f4b5-4b4a-4694-9d20-791528366e19", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "725", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1556e222-21fd-4d00-841b-0fa827ddbc8d", - "Date" : "Mon, 23 Aug 2021 08:22:07 GMT", + "x-ms-correlation-request-id" : "95fb0686-51cd-4ada-bba4-29f18ba5663c", + "Date" : "Sun, 06 Mar 2022 06:35:31 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f190b22a-9e61-4456-858c-f4bc7cbc31aa", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082207Z:1556e222-21fd-4d00-841b-0fa827ddbc8d", + "client-request-id" : "f383f4b5-4b4a-4694-9d20-791528366e19", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063531Z:95fb0686-51cd-4ada-bba4-29f18ba5663c", "Expires" : "-1", - "x-ms-request-id" : "c21040e3-57db-4664-82df-0e3dc8539fba", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "25413ac3-45fe-4e52-9593-7bb9b9dee715", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/patchSchedules/default?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redis?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1663fdb-c332-4512-b22f-694872ef28ea", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "cab3fc4c-4c1f-4d64-8f61-231fec55fa78", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "448", - "Server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "5932", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "x-ms-original-request-ids" : "794a16f0-6b39-4c88-8c49-fe8a5c98bc1a,c328e711-d375-4308-bf88-64b2073f09b6,99230637-7819-47d2-9c11-d86e620428c9,f7a394d1-1098-4bba-8172-8f1f393f1814", "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2a2dc91f-34f3-4e98-84fa-a5e209f77751", - "Date" : "Mon, 23 Aug 2021 08:22:07 GMT", + "x-ms-correlation-request-id" : "3a504148-1081-4449-8928-c5b1837c1316", + "Date" : "Sun, 06 Mar 2022 06:35:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", "Cache-Control" : "no-cache", - "client-request-id" : "c1663fdb-c332-4512-b22f-694872ef28ea", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082207Z:2a2dc91f-34f3-4e98-84fa-a5e209f77751", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063532Z:3a504148-1081-4449-8928-c5b1837c1316", "Expires" : "-1", - "x-ms-request-id" : "8c3e8da8-1c0f-4038-8e71-40d1e7796fbe", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":1,\"maintenanceWindow\":\"PT5H\"},{\"dayOfWeek\":\"Tuesday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", + "x-ms-request-id" : "3a504148-1081-4449-8928-c5b1837c1316", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Second\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023Second/providers/Microsoft.Cache/Redis/javacsmrc39095Third\",\"location\":\"Central US\",\"name\":\"javacsmrc39095Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Third\",\"location\":\"Central US\",\"name\":\"javacsmrc16532Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg28437Second/providers/Microsoft.Cache/Redis/javacsmrc16532Second\",\"location\":\"East US\",\"name\":\"javacsmrc16532Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"1330\",\"maxfragmentationmemory-reserved\":\"1330\",\"maxmemory-delta\":\"1330\"},\"accessKeys\":null,\"hostName\":\"javacsmrc16532Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"UpgradingRedisServerVersion\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Deleting\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec3f9c00-113b-4f70-bd00-649bbc411e30", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "24ee1465-b610-4165-bc40-faae4770b1d4", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "713", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e39cdc97-8454-4831-9b4f-21f8aa72a0cb", - "Date" : "Mon, 23 Aug 2021 08:22:07 GMT", + "x-ms-correlation-request-id" : "24024940-b879-4ff8-aca9-fa50a2105161", + "Date" : "Sun, 06 Mar 2022 06:35:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ec3f9c00-113b-4f70-bd00-649bbc411e30", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082208Z:e39cdc97-8454-4831-9b4f-21f8aa72a0cb", + "client-request-id" : "24ee1465-b610-4165-bc40-faae4770b1d4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063533Z:24024940-b879-4ff8-aca9-fa50a2105161", "Expires" : "-1", - "x-ms-request-id" : "233431d3-783e-4a2a-aa42-4980a79a7bd5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "34b57fed-826d-411e-9f1d-9926663dee69", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/firewallRules?api-version=2020-12-01", + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095/listKeys?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2015e429-880f-469e-84ea-623093b108f5", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b6bc7885-8af1-4ac1-887c-ba081bfda890", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "636", + "content-length" : "123", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e97a5df2-20d5-4752-971a-6041a41c0c6a", - "Date" : "Mon, 23 Aug 2021 08:22:08 GMT", + "x-ms-correlation-request-id" : "3e4ea0e4-6ad7-46f2-8a21-52835ea36471", + "Date" : "Sun, 06 Mar 2022 06:35:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "2015e429-880f-469e-84ea-623093b108f5", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082208Z:e97a5df2-20d5-4752-971a-6041a41c0c6a", + "client-request-id" : "b6bc7885-8af1-4ac1-887c-ba081bfda890", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063533Z:3e4ea0e4-6ad7-46f2-8a21-52835ea36471", "Expires" : "-1", - "x-ms-request-id" : "87c110c2-7e41-4464-9406-ccb2f7432b0a", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule2\",\"name\":\"javacsmrc19834Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/firewallRules/rule3\",\"name\":\"javacsmrc19834Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", + "x-ms-request-id" : "cd8fff16-1b0d-44e8-8312-69cf6678f0bb", + "Body" : "{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/patchSchedules?api-version=2020-12-01", + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095/listKeys?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a763d6cb-3c9e-446c-8733-e55244ad05f4", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6b980cd0-e462-47c2-acba-779724b3e6f0", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "460", + "content-length" : "123", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d3cc232b-8137-4ed1-8dbf-33fcfb7f8fd1", - "Date" : "Mon, 23 Aug 2021 08:22:08 GMT", + "x-ms-correlation-request-id" : "21d0ec14-595a-4250-a980-e23803f9ef6d", + "Date" : "Sun, 06 Mar 2022 06:35:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a763d6cb-3c9e-446c-8733-e55244ad05f4", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082208Z:d3cc232b-8137-4ed1-8dbf-33fcfb7f8fd1", + "client-request-id" : "6b980cd0-e462-47c2-acba-779724b3e6f0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063533Z:21d0ec14-595a-4250-a980-e23803f9ef6d", "Expires" : "-1", - "x-ms-request-id" : "392bd88d-3fbf-45c9-8a01-bb586681c635", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":1,\"maintenanceWindow\":\"PT5H\"},{\"dayOfWeek\":\"Tuesday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}]}", + "x-ms-request-id" : "1c878bad-8466-42d1-bab0-04c814c64ee8", + "Body" : "{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/forceReboot?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095/regenerateKey?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8264f61-beb9-447e-8a22-0686584bad0c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8dfade45-19ee-49e6-9120-dcf043a15cd5", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "127", + "content-length" : "123", "Server" : "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" : "5900fe70-f3bc-43d6-976b-648dca113d55", - "Date" : "Mon, 23 Aug 2021 08:22:09 GMT", + "x-ms-correlation-request-id" : "6ece3098-3b0b-4f6a-b1bd-639ab1df8258", + "Date" : "Sun, 06 Mar 2022 06:35:33 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d8264f61-beb9-447e-8a22-0686584bad0c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082209Z:5900fe70-f3bc-43d6-976b-648dca113d55", + "client-request-id" : "8dfade45-19ee-49e6-9120-dcf043a15cd5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063534Z:6ece3098-3b0b-4f6a-b1bd-639ab1df8258", "Expires" : "-1", - "x-ms-request-id" : "58991413-7efc-4ed4-bcad-c6a4937f4682", - "Body" : "{\r\n \"message\": \"The requested reboot operation for 'Value' has been successfully scheduled and should be executed shortly.\"\r\n}", + "x-ms-request-id" : "7d9db23d-23ea-468a-a76c-8deba12e500a", + "Body" : "{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/patchSchedules/default?api-version=2020-12-01", + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095/regenerateKey?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "aee50858-6528-45f8-bcf2-c3c63874882f", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b0a3dc17-50c5-4884-a635-41a66facb5d9", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "content-length" : "123", "Server" : "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" : "77dcd842-0744-41cd-be82-8c86291f1564", - "Date" : "Mon, 23 Aug 2021 08:22:09 GMT", + "x-ms-correlation-request-id" : "755ce1f3-1b7e-461f-9a11-2c97e2d0166c", + "Date" : "Sun, 06 Mar 2022 06:35:34 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "aee50858-6528-45f8-bcf2-c3c63874882f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082210Z:77dcd842-0744-41cd-be82-8c86291f1564", + "client-request-id" : "b0a3dc17-50c5-4884-a635-41a66facb5d9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063534Z:755ce1f3-1b7e-461f-9a11-2c97e2d0166c", "Expires" : "-1", - "x-ms-request-id" : "0d9255b7-a25d-42dc-9e83-cc243297f91c" + "x-ms-request-id" : "4d50f9f0-bf64-4232-92d2-4f61ddcd07aa", + "Body" : "{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3e75254d-2671-469e-8ecc-f11bbecfe696", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "961", + "Server" : "Microsoft-HTTPAPI/2.0", + "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" : "0c041064-349e-4434-9dc2-69fb3317cb9d", + "Date" : "Sun, 06 Mar 2022 06:35:35 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "3e75254d-2671-469e-8ecc-f11bbecfe696", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063536Z:0c041064-349e-4434-9dc2-69fb3317cb9d", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East Asia/asyncOperations/053c5aa9-ee5b-44f1-a290-39edbe29911d?api-version=2021-06-01", + "x-ms-request-id" : "053c5aa9-ee5b-44f1-a290-39edbe29911d", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"javacsmrc39095\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Scaling\",\r\n \"redisVersion\": \"4.1.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"javacsmrc39095.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/asyncOperations/053c5aa9-ee5b-44f1-a290-39edbe29911d?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ef3f5f1-338b-4077-b95a-40c2847ec96a", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "671d1a9f-1ef0-4ef6-a884-144add3e4c30", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "187", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", - "StatusCode" : "404", - "x-ms-correlation-request-id" : "accb8aed-f12c-4323-912e-18436d051bdf", - "Date" : "Mon, 23 Aug 2021 08:22:10 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "ba33e8fa-e84a-4254-aaba-da2bfaacf335", + "Date" : "Sun, 06 Mar 2022 06:36:05 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "9ef3f5f1-338b-4077-b95a-40c2847ec96a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082210Z:accb8aed-f12c-4323-912e-18436d051bdf", + "client-request-id" : "671d1a9f-1ef0-4ef6-a884-144add3e4c30", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063606Z:ba33e8fa-e84a-4254-aaba-da2bfaacf335", "Expires" : "-1", - "x-ms-request-id" : "a01174f4-067a-418c-84aa-8dc07f388274", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc19834Third'.\\r\\nRequestID=a01174f4-067a-418c-84aa-8dc07f388274\",\"target\":null}}", + "x-ms-request-id" : "da005bca-2a07-4f03-887c-a5840ed6644a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c2250cfb-0892-4ad9-9054-37eecf0ff145", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "48b71b81-2624-47be-835b-7617b605d057", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "832", + "content-length" : "711", + "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", + "x-ms-correlation-request-id" : "7ac69178-18a1-4455-9e36-c4f183984718", + "Date" : "Sun, 06 Mar 2022 06:36:35 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "48b71b81-2624-47be-835b-7617b605d057", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063636Z:7ac69178-18a1-4455-9e36-c4f183984718", + "Expires" : "-1", + "x-ms-request-id" : "e9721b00-4905-4bd6-a4b6-fa62a9934f43", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e0953bd9-f24b-43fc-a534-7006d2e7b58f", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "711", "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", - "x-ms-correlation-request-id" : "aba49fce-c403-4289-ab4e-204260e618d6", - "Date" : "Mon, 23 Aug 2021 08:22:10 GMT", + "x-ms-correlation-request-id" : "adca3063-e5bb-4222-8ca9-e0def8993f56", + "Date" : "Sun, 06 Mar 2022 06:37:06 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c2250cfb-0892-4ad9-9054-37eecf0ff145", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082210Z:aba49fce-c403-4289-ab4e-204260e618d6", + "client-request-id" : "e0953bd9-f24b-43fc-a534-7006d2e7b58f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063706Z:adca3063-e5bb-4222-8ca9-e0def8993f56", "Expires" : "-1", - "x-ms-request-id" : "bf97aa4c-9e85-4d88-9256-343dcffde652", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "291fce51-8f25-4147-abfc-374b26cd4233", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/redis/javacsmrc19834Third/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e1b9dff-867a-4ae5-b69d-be590f61c004", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "db0b556c-f418-42ca-b947-e717c97de158", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "187", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", - "StatusCode" : "404", - "x-ms-correlation-request-id" : "a88cb88d-0bfe-4d0d-9cab-b6c99332076a", - "Date" : "Mon, 23 Aug 2021 08:22:10 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "30684347-f276-493d-a53f-2885a5395f9b", + "Date" : "Sun, 06 Mar 2022 06:37:36 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "7e1b9dff-867a-4ae5-b69d-be590f61c004", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082211Z:a88cb88d-0bfe-4d0d-9cab-b6c99332076a", + "client-request-id" : "db0b556c-f418-42ca-b947-e717c97de158", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063737Z:30684347-f276-493d-a53f-2885a5395f9b", "Expires" : "-1", - "x-ms-request-id" : "bb1f4569-d90d-479a-b155-72cd5f4e2198", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc19834Third'.\\r\\nRequestID=bb1f4569-d90d-479a-b155-72cd5f4e2198\",\"target\":null}}", + "x-ms-request-id" : "59921e21-19dd-4260-85b0-4a9645797798", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "82660bbe-9e68-42af-bebd-3f88d6d8986b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f5d8e784-9d8d-4041-a745-5420fe420eed", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "723", + "content-length" : "711", "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", - "x-ms-correlation-request-id" : "75b147fe-8c07-4053-8a99-06ce0d6e0945", - "Date" : "Mon, 23 Aug 2021 08:22:12 GMT", + "x-ms-correlation-request-id" : "c915ebd5-22b9-4e52-b1d6-bc52bcfba697", + "Date" : "Sun, 06 Mar 2022 06:38:07 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "f5d8e784-9d8d-4041-a745-5420fe420eed", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063807Z:c915ebd5-22b9-4e52-b1d6-bc52bcfba697", + "Expires" : "-1", + "x-ms-request-id" : "c9f7173e-f146-4324-9cb3-701731ca7198", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2b95cba2-147d-41a3-97b9-aaabaedb6cb8", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "711", + "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", + "x-ms-correlation-request-id" : "1e0807cf-9849-406e-a079-3cd4a2953fb3", + "Date" : "Sun, 06 Mar 2022 06:38:37 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "2b95cba2-147d-41a3-97b9-aaabaedb6cb8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063837Z:1e0807cf-9849-406e-a079-3cd4a2953fb3", + "Expires" : "-1", + "x-ms-request-id" : "5eb82de9-0d63-4b83-8176-10014c323f46", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "63df0e79-1075-415d-a126-c758e6d78feb", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "711", + "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", + "x-ms-correlation-request-id" : "1e115c9d-32fb-427c-acce-78758e8f5d59", + "Date" : "Sun, 06 Mar 2022 06:39:07 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "82660bbe-9e68-42af-bebd-3f88d6d8986b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082212Z:75b147fe-8c07-4053-8a99-06ce0d6e0945", + "client-request-id" : "63df0e79-1075-415d-a126-c758e6d78feb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063908Z:1e115c9d-32fb-427c-acce-78758e8f5d59", "Expires" : "-1", - "x-ms-request-id" : "7e1f8716-f786-41b0-bc10-2a4d36e1aeef", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}]}", + "x-ms-request-id" : "29bc73dd-a323-47a5-a9fc-f5123b8c61bf", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redis?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "48512498-7a45-4ee2-8168-62eb69c646e8", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f0c56919-970e-43ce-b278-ce37671c9b21", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "8326", + "content-length" : "711", + "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", + "x-ms-correlation-request-id" : "798d7bca-e85e-459b-86d9-c659fb18012b", + "Date" : "Sun, 06 Mar 2022 06:39:38 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "f0c56919-970e-43ce-b278-ce37671c9b21", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063938Z:798d7bca-e85e-459b-86d9-c659fb18012b", + "Expires" : "-1", + "x-ms-request-id" : "618c0571-244d-4fd7-8a5e-6fa43fa5466f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a5cb9a22-deb1-4427-8fe2-c860503b56ee", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "711", + "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-original-request-ids" : "b6bb8d87-16cb-4fff-be27-01e40939f0ab,d2c22c4b-6fcc-4479-b349-b8d9e0aea214,ad0ea8f2-619a-463e-9d98-ed8ced14175b", "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "200", - "x-ms-correlation-request-id" : "9b372577-cc30-447f-81b7-47c04f058c3e", - "Date" : "Mon, 23 Aug 2021 08:22:13 GMT", + "x-ms-correlation-request-id" : "7e6fc412-5e38-468b-ad7f-6281ba2e06ad", + "Date" : "Sun, 06 Mar 2022 06:40:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082213Z:9b372577-cc30-447f-81b7-47c04f058c3e", + "client-request-id" : "a5cb9a22-deb1-4427-8fe2-c860503b56ee", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064008Z:7e6fc412-5e38-468b-ad7f-6281ba2e06ad", "Expires" : "-1", - "x-ms-request-id" : "9b372577-cc30-447f-81b7-47c04f058c3e", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg93094Second/providers/Microsoft.Cache/Redis/javacsmrc62468Second\",\"location\":\"Central US\",\"name\":\"javacsmrc62468Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc62468Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg50001Second/providers/Microsoft.Cache/Redis/javacsmrc58366Third\",\"location\":\"Central US\",\"name\":\"javacsmrc58366Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc58366Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg99004Second/providers/Microsoft.Cache/Redis/javacsmrc90776Third\",\"location\":\"Central US\",\"name\":\"javacsmrc90776Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc90776Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg84172Second/providers/Microsoft.Cache/Redis/javacsmrc97700Third\",\"location\":\"Central US\",\"name\":\"javacsmrc97700Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc97700Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg93094Second/providers/Microsoft.Cache/Redis/javacsmrc62468Third\",\"location\":\"Central US\",\"name\":\"javacsmrc62468Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc62468Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Third\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"instances\":[{\"sslPort\":15000,\"nonSslPort\":13000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"nonSslPort\":13001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675Second/providers/Microsoft.Cache/Redis/javacsmrc19834Second\",\"location\":\"Central US\",\"name\":\"javacsmrc19834Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"shardId\":0,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"shardId\":0,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15002,\"shardId\":1,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15003,\"shardId\":1,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":2,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg81366Second/providers/Microsoft.Cache/Redis/javacsmrc72809Second\",\"location\":\"East US\",\"name\":\"javacsmrc72809Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc72809Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg93094/providers/Microsoft.Cache/Redis/javacsmrc62468\",\"location\":\"East Asia\",\"name\":\"javacsmrc62468\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc62468.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}]}", + "x-ms-request-id" : "f981af3a-395e-403e-a4e4-c7a26fcedc34", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62e4a6ba-2988-44fb-9c9e-75c6eac9c797", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "212a47b0-3375-4e03-a2de-3baa713c4e72", "Content-Type" : "application/json" }, "Response" : { @@ -3743,747 +3959,780 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8048857a-4342-41ad-b2bf-72a1fad5fe57", - "Date" : "Mon, 23 Aug 2021 08:22:13 GMT", + "x-ms-correlation-request-id" : "ec62f4bb-ed4a-4184-b258-52354077b0d1", + "Date" : "Sun, 06 Mar 2022 06:40:38 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "62e4a6ba-2988-44fb-9c9e-75c6eac9c797", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082214Z:8048857a-4342-41ad-b2bf-72a1fad5fe57", + "client-request-id" : "212a47b0-3375-4e03-a2de-3baa713c4e72", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064039Z:ec62f4bb-ed4a-4184-b258-52354077b0d1", "Expires" : "-1", - "x-ms-request-id" : "c7c9ca83-2841-47e4-b961-d4c5e71be4c3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "2879d35a-667a-4eed-be76-6e2001fe5f70", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834/listKeys?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "587ee6a1-7363-4a0d-a322-4c01690acb8e", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "93f7dc2b-34ee-4c12-be6b-390318077c71", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "123", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a54ee8d1-8577-4eb9-876b-53da44182d93", - "Date" : "Mon, 23 Aug 2021 08:22:14 GMT", + "x-ms-correlation-request-id" : "3e58db9d-8a03-4d6c-9ea6-6265137af4ce", + "Date" : "Sun, 06 Mar 2022 06:41:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "587ee6a1-7363-4a0d-a322-4c01690acb8e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082214Z:a54ee8d1-8577-4eb9-876b-53da44182d93", + "client-request-id" : "93f7dc2b-34ee-4c12-be6b-390318077c71", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064109Z:3e58db9d-8a03-4d6c-9ea6-6265137af4ce", "Expires" : "-1", - "x-ms-request-id" : "a2093664-d6a9-4406-800c-79d02b7aae6d", - "Body" : "{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"}", + "x-ms-request-id" : "1ae280fa-0742-4f22-9261-08121a86bfe1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834/listKeys?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "14ec59d5-6ae7-4b0a-bb6d-8e2ebf78b61b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "fdd7a3e3-de8e-436a-bbce-27f9c07aba77", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "123", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", - "x-ms-correlation-request-id" : "600b88b8-b7f8-4b3e-9513-c23f21403781", - "Date" : "Mon, 23 Aug 2021 08:22:14 GMT", + "x-ms-correlation-request-id" : "f4a31de9-8326-4c7b-ab5c-a2515d71b3bc", + "Date" : "Sun, 06 Mar 2022 06:41:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "14ec59d5-6ae7-4b0a-bb6d-8e2ebf78b61b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082214Z:600b88b8-b7f8-4b3e-9513-c23f21403781", + "client-request-id" : "fdd7a3e3-de8e-436a-bbce-27f9c07aba77", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064139Z:f4a31de9-8326-4c7b-ab5c-a2515d71b3bc", "Expires" : "-1", - "x-ms-request-id" : "83eaf9c1-1c5f-43cc-96d2-d250332a87c6", - "Body" : "{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"}", + "x-ms-request-id" : "e33906bf-1e76-4ccd-aebd-099366bc8671", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834/regenerateKey?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f13f370-0a62-41b8-aaa4-02c764e0e857", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3ede7022-2fa4-421c-a549-f1b1a8f6cfbd", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "123", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "200", - "x-ms-correlation-request-id" : "655d54a9-72a9-4c2b-85bd-fffb85fd76ba", - "Date" : "Mon, 23 Aug 2021 08:22:15 GMT", + "x-ms-correlation-request-id" : "8945980e-f5a1-4c9c-ad30-9dc7a377237d", + "Date" : "Sun, 06 Mar 2022 06:42:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "2f13f370-0a62-41b8-aaa4-02c764e0e857", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082215Z:655d54a9-72a9-4c2b-85bd-fffb85fd76ba", + "client-request-id" : "3ede7022-2fa4-421c-a549-f1b1a8f6cfbd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064210Z:8945980e-f5a1-4c9c-ad30-9dc7a377237d", "Expires" : "-1", - "x-ms-request-id" : "e15e37b1-54c1-4ca9-85a0-268f9d24268b", - "Body" : "{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"}", + "x-ms-request-id" : "91bd0b3e-9541-4ba9-bd5f-9520248500ad", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834/regenerateKey?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "93420b66-5aa3-4152-a65c-7f97bb6dfc72", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "30579c9d-a527-49fa-a010-8dc730b38567", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "123", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "200", - "x-ms-correlation-request-id" : "4a6c0427-7bab-4496-8100-ae08b5fe1982", - "Date" : "Mon, 23 Aug 2021 08:22:16 GMT", + "x-ms-correlation-request-id" : "f77974e7-0477-489a-bc9c-4e9fb0d09f86", + "Date" : "Sun, 06 Mar 2022 06:42:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "93420b66-5aa3-4152-a65c-7f97bb6dfc72", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082216Z:4a6c0427-7bab-4496-8100-ae08b5fe1982", + "client-request-id" : "30579c9d-a527-49fa-a010-8dc730b38567", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064240Z:f77974e7-0477-489a-bc9c-4e9fb0d09f86", "Expires" : "-1", - "x-ms-request-id" : "65085aeb-457f-4950-97ef-f021d40578d6", - "Body" : "{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"}", + "x-ms-request-id" : "5914cb1a-753c-42a6-bb9d-f4702110f06d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cddf80a5-3380-41b9-ab59-983b4d1bdc6c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f8870bb3-4b58-49c4-a989-f40a8ef80724", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", - "x-ms-correlation-request-id" : "33e28cee-b90f-4402-a76e-d066ddcf5a1d", - "Date" : "Mon, 23 Aug 2021 08:22:19 GMT", + "x-ms-correlation-request-id" : "ac940be6-40a7-4432-9759-ba7538f68be8", + "Date" : "Sun, 06 Mar 2022 06:43:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cddf80a5-3380-41b9-ab59-983b4d1bdc6c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082219Z:33e28cee-b90f-4402-a76e-d066ddcf5a1d", + "client-request-id" : "f8870bb3-4b58-49c4-a989-f40a8ef80724", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064310Z:ac940be6-40a7-4432-9759-ba7538f68be8", "Expires" : "-1", - "x-ms-request-id" : "cd376081-3d0a-4d7e-a60e-1b9ec180319c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "eee22527-7b20-46b3-9815-6b634f9b8fa9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "62efb84a-a65b-4e08-b988-25e27354d934", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "96e64757-2e1b-438d-8f0b-0215794ed79c", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "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", - "x-ms-correlation-request-id" : "abf0eb60-7991-4967-8868-ed2c92982055", - "Date" : "Mon, 23 Aug 2021 08:22:49 GMT", + "x-ms-correlation-request-id" : "1e1820ea-176c-4838-bc9e-eda05f83f00c", + "Date" : "Sun, 06 Mar 2022 06:43:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "62efb84a-a65b-4e08-b988-25e27354d934", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082250Z:abf0eb60-7991-4967-8868-ed2c92982055", + "client-request-id" : "96e64757-2e1b-438d-8f0b-0215794ed79c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064341Z:1e1820ea-176c-4838-bc9e-eda05f83f00c", "Expires" : "-1", - "x-ms-request-id" : "c532f34c-e7e9-4856-b0a2-0fc51e571116", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "dcc0cfaa-f386-43a9-a01b-d783da73a2f1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b41346a-1368-4dec-b115-01ce1ca5faeb", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "87d07836-20f5-43b7-9a89-e7f2d1290fb2", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a415fc03-6fdc-4a89-b36e-7aa878237c2d", - "Date" : "Mon, 23 Aug 2021 08:23:20 GMT", + "x-ms-correlation-request-id" : "b499b8a8-ceeb-43f4-8cf8-5ee12d10384d", + "Date" : "Sun, 06 Mar 2022 06:44:11 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "1b41346a-1368-4dec-b115-01ce1ca5faeb", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082321Z:a415fc03-6fdc-4a89-b36e-7aa878237c2d", + "client-request-id" : "87d07836-20f5-43b7-9a89-e7f2d1290fb2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064411Z:b499b8a8-ceeb-43f4-8cf8-5ee12d10384d", "Expires" : "-1", - "x-ms-request-id" : "a8324669-539a-46ab-86cb-c30aac1155cb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "fdd4ca4b-df7f-4132-92c9-991b0407d01c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "bba3bdf5-c6b6-49b9-88de-c47f583187d5", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "af7ff6fe-1876-4668-8561-b7b1c968e2b0", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "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", - "x-ms-correlation-request-id" : "caa30ebd-860b-4c08-b4d4-5626246f38e8", - "Date" : "Mon, 23 Aug 2021 08:23:50 GMT", + "x-ms-correlation-request-id" : "8c885586-80d2-4fa9-b546-a967c038e2c6", + "Date" : "Sun, 06 Mar 2022 06:44:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "bba3bdf5-c6b6-49b9-88de-c47f583187d5", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082351Z:caa30ebd-860b-4c08-b4d4-5626246f38e8", + "client-request-id" : "af7ff6fe-1876-4668-8561-b7b1c968e2b0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064442Z:8c885586-80d2-4fa9-b546-a967c038e2c6", "Expires" : "-1", - "x-ms-request-id" : "f2daa5d9-c5f9-4f5a-a8a9-ab4dc31b77d1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "13add05c-2fec-4d5f-bcf6-6b46b28c5fbd", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "70dc9b86-508c-4fea-9880-3a4f42292265", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5f3e0412-b63e-4cb0-a867-6e6bb98e37bb", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8a27dfe5-ca46-4ce5-9159-12d6ff8e6ed0", - "Date" : "Mon, 23 Aug 2021 08:24:22 GMT", + "x-ms-correlation-request-id" : "a01a5f74-be19-4e72-9c02-e34604a5cf2c", + "Date" : "Sun, 06 Mar 2022 06:45:12 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "70dc9b86-508c-4fea-9880-3a4f42292265", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082422Z:8a27dfe5-ca46-4ce5-9159-12d6ff8e6ed0", + "client-request-id" : "5f3e0412-b63e-4cb0-a867-6e6bb98e37bb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064512Z:a01a5f74-be19-4e72-9c02-e34604a5cf2c", "Expires" : "-1", - "x-ms-request-id" : "ae1be0d5-434b-496f-8b3d-8f3c48658df7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "8d962bc1-1657-4610-adaf-302873e5e0a9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2100f328-8c85-401a-99a9-9bb13a147bf3", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "56ca33b7-d209-4a04-b97c-e513df52d262", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "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", - "x-ms-correlation-request-id" : "f47d058c-da00-46eb-b5a1-230dce180d15", - "Date" : "Mon, 23 Aug 2021 08:24:52 GMT", + "x-ms-correlation-request-id" : "cd1ff2ce-79e4-45f8-b791-099627ea25a9", + "Date" : "Sun, 06 Mar 2022 06:45:42 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "2100f328-8c85-401a-99a9-9bb13a147bf3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082453Z:f47d058c-da00-46eb-b5a1-230dce180d15", + "client-request-id" : "56ca33b7-d209-4a04-b97c-e513df52d262", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064542Z:cd1ff2ce-79e4-45f8-b791-099627ea25a9", "Expires" : "-1", - "x-ms-request-id" : "2f62d1cf-f20a-4734-8eb9-b2792d09b1f3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "2d276816-0119-4f33-8130-f090ec793521", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "3dbfa796-bc58-4f6b-a314-126354274140", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b3de4543-a1a1-4cd1-9024-021f15608f44", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", + "x-ms-ratelimit-remaining-subscription-reads" : "11953", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c8183fab-346b-48f4-9dc7-50a23dfcd12e", - "Date" : "Mon, 23 Aug 2021 08:25:23 GMT", + "x-ms-correlation-request-id" : "00d67420-15c7-43c5-a695-705288647f7b", + "Date" : "Sun, 06 Mar 2022 06:46:12 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "3dbfa796-bc58-4f6b-a314-126354274140", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082524Z:c8183fab-346b-48f4-9dc7-50a23dfcd12e", + "client-request-id" : "b3de4543-a1a1-4cd1-9024-021f15608f44", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064613Z:00d67420-15c7-43c5-a695-705288647f7b", "Expires" : "-1", - "x-ms-request-id" : "36604c77-d131-4661-b61c-e3c294187c38", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "ad4d3645-8be9-4951-b6b5-982a34b0c401", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ca6cce7-2cba-4165-a86b-868975f842e0", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "11e31dd4-2277-4524-a639-7d2fbe2727a9", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "200", - "x-ms-correlation-request-id" : "83d99cc7-7350-4a0a-972a-57ff13e5afb0", - "Date" : "Mon, 23 Aug 2021 08:25:54 GMT", + "x-ms-correlation-request-id" : "e61a5ef6-2253-48b0-961d-6669b2b0bc94", + "Date" : "Sun, 06 Mar 2022 06:46:42 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "6ca6cce7-2cba-4165-a86b-868975f842e0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082555Z:83d99cc7-7350-4a0a-972a-57ff13e5afb0", + "client-request-id" : "11e31dd4-2277-4524-a639-7d2fbe2727a9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064643Z:e61a5ef6-2253-48b0-961d-6669b2b0bc94", "Expires" : "-1", - "x-ms-request-id" : "f03bea42-7d69-4f50-a9fd-10193a50a51f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "9f7c8197-b03b-43c1-bb19-0bd4d8540cb0", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab5082da-0949-4833-b288-8d69eb1e1af6", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3db52dc0-6897-47b7-b2f7-ba1386c3de6d", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", + "x-ms-ratelimit-remaining-subscription-reads" : "11952", "StatusCode" : "200", - "x-ms-correlation-request-id" : "14bf3c1f-4862-4a2d-be9e-32320bf665c3", - "Date" : "Mon, 23 Aug 2021 08:26:25 GMT", + "x-ms-correlation-request-id" : "29993cda-db83-4d3f-83b3-dc8baa8ac30b", + "Date" : "Sun, 06 Mar 2022 06:47:13 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ab5082da-0949-4833-b288-8d69eb1e1af6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082625Z:14bf3c1f-4862-4a2d-be9e-32320bf665c3", + "client-request-id" : "3db52dc0-6897-47b7-b2f7-ba1386c3de6d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064713Z:29993cda-db83-4d3f-83b3-dc8baa8ac30b", "Expires" : "-1", - "x-ms-request-id" : "bb4a5410-0bd3-44f4-8926-14d626819ac0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "3a74685b-75eb-4e71-9efa-c77eee442ad2", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "26f2749b-d30d-46ba-8a8d-dd2e03861930", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8717ea5f-70ca-435b-a368-77116df5573b", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "200", - "x-ms-correlation-request-id" : "7ed76b97-a061-4c10-a5d0-f5ca4338a710", - "Date" : "Mon, 23 Aug 2021 08:26:55 GMT", + "x-ms-correlation-request-id" : "205a0dc0-28a7-4511-81e9-c25a7de79017", + "Date" : "Sun, 06 Mar 2022 06:47:43 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "26f2749b-d30d-46ba-8a8d-dd2e03861930", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082656Z:7ed76b97-a061-4c10-a5d0-f5ca4338a710", + "client-request-id" : "8717ea5f-70ca-435b-a368-77116df5573b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064744Z:205a0dc0-28a7-4511-81e9-c25a7de79017", "Expires" : "-1", - "x-ms-request-id" : "c0126746-8fa7-4bee-aadb-ac7eb2cefd6d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "96741798-6bf6-4129-9549-d64f67124e75", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "99a9f896-a8c6-4a57-bdc3-3237271f8518", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2150c511-fe99-4ff8-afcc-6abf7561e95f", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", + "x-ms-ratelimit-remaining-subscription-reads" : "11951", "StatusCode" : "200", - "x-ms-correlation-request-id" : "273c7d3b-3e70-4691-ba62-67ef279fa7ff", - "Date" : "Mon, 23 Aug 2021 08:27:26 GMT", + "x-ms-correlation-request-id" : "17a634fb-2f86-41fa-8a48-6cb65d1a0d49", + "Date" : "Sun, 06 Mar 2022 06:48:14 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "99a9f896-a8c6-4a57-bdc3-3237271f8518", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082727Z:273c7d3b-3e70-4691-ba62-67ef279fa7ff", + "client-request-id" : "2150c511-fe99-4ff8-afcc-6abf7561e95f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064815Z:17a634fb-2f86-41fa-8a48-6cb65d1a0d49", "Expires" : "-1", - "x-ms-request-id" : "14e76af3-303d-4cdd-9329-f6ac9a8de9d4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "95e8c284-d0e6-42e6-b18d-1b9d3f366f88", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9e861e6-fb35-4fa5-8ecd-d5addc8ba6d2", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5c858683-4dbe-4fcf-995e-3fe457342140", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e71eb615-07a5-425e-b9d9-e964708fcf5d", - "Date" : "Mon, 23 Aug 2021 08:27:57 GMT", + "x-ms-correlation-request-id" : "c8c81dc8-1b4d-420f-8a8e-29746afe3d7d", + "Date" : "Sun, 06 Mar 2022 06:48:45 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f9e861e6-fb35-4fa5-8ecd-d5addc8ba6d2", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082758Z:e71eb615-07a5-425e-b9d9-e964708fcf5d", + "client-request-id" : "5c858683-4dbe-4fcf-995e-3fe457342140", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064845Z:c8c81dc8-1b4d-420f-8a8e-29746afe3d7d", "Expires" : "-1", - "x-ms-request-id" : "37b208da-9887-45dd-807b-3a85f6fdc6ec", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "7685f4c9-a83f-46e4-a084-7f8439b4abde", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a18f46c5-afe7-46e5-87ad-f95d635b9957", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e076e7ab-d632-49fc-ba9c-1af5b79a7803", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "709", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", + "x-ms-ratelimit-remaining-subscription-reads" : "11950", "StatusCode" : "200", - "x-ms-correlation-request-id" : "38f46c81-da19-4a46-b31c-f9d6a995b5b2", - "Date" : "Mon, 23 Aug 2021 08:28:28 GMT", + "x-ms-correlation-request-id" : "a075a49b-6568-4764-a79c-f23dc0701b93", + "Date" : "Sun, 06 Mar 2022 06:49:15 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a18f46c5-afe7-46e5-87ad-f95d635b9957", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082829Z:38f46c81-da19-4a46-b31c-f9d6a995b5b2", + "client-request-id" : "e076e7ab-d632-49fc-ba9c-1af5b79a7803", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064915Z:a075a49b-6568-4764-a79c-f23dc0701b93", "Expires" : "-1", - "x-ms-request-id" : "63b2216c-18fd-4a2b-a202-c8a4d2b05db2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "36a6f40f-be8d-4715-a8ca-572e71419de0", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8593046-6ba3-4cdb-8edb-0d8772863c1e", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b400429a-cf54-48a1-8c87-1a5e560b43ef", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "769", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", + "x-ms-ratelimit-remaining-subscription-reads" : "11954", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e5cd8e27-015b-48cf-a07a-5e0a9c627247", - "Date" : "Mon, 23 Aug 2021 08:28:59 GMT", + "x-ms-correlation-request-id" : "7b1f9003-f526-47c7-95f9-b89af8b0f524", + "Date" : "Sun, 06 Mar 2022 06:49:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c8593046-6ba3-4cdb-8edb-0d8772863c1e", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082859Z:e5cd8e27-015b-48cf-a07a-5e0a9c627247", + "client-request-id" : "b400429a-cf54-48a1-8c87-1a5e560b43ef", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064946Z:7b1f9003-f526-47c7-95f9-b89af8b0f524", "Expires" : "-1", - "x-ms-request-id" : "5c424a71-1b7e-4f8f-b679-c7d414bbf62b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "7495d099-e62b-462f-9422-8911b6c9e56c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "79c75d78-8a0b-4522-8dc3-0601a33238c5", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ec87001b-784e-459a-9ece-989b2075fab8", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "179", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "400", - "x-ms-correlation-request-id" : "8d10f8db-d734-445a-a181-aba5d71a0099", - "Date" : "Mon, 23 Aug 2021 08:29:00 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11949", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "2a528d37-73eb-4b6a-a704-0a0aab410326", + "Date" : "Sun, 06 Mar 2022 06:50:15 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "79c75d78-8a0b-4522-8dc3-0601a33238c5", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082901Z:8d10f8db-d734-445a-a181-aba5d71a0099", + "client-request-id" : "ec87001b-784e-459a-9ece-989b2075fab8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065016Z:2a528d37-73eb-4b6a-a704-0a0aab410326", "Expires" : "-1", - "x-ms-request-id" : "5c4218dd-acf1-4965-b0e6-c30a363477f9", - "Body" : "{\"error\":{\"code\":\"BadRequest\",\"message\":\"Invalid update request: properties.sku.name cannot be updated to Basic.\\r\\nRequestID=5c4218dd-acf1-4965-b0e6-c30a363477f9\",\"target\":null}}", + "x-ms-request-id" : "672ac199-62f2-43eb-8be2-5641d002110b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "98a43b0f-a1c9-4013-8022-a507832cc911", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "57ab029d-2e96-4f79-a7eb-9ed711f4f4e9", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "769", + "content-length" : "711", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", + "x-ms-ratelimit-remaining-subscription-reads" : "11951", "StatusCode" : "200", - "x-ms-correlation-request-id" : "419291f1-6c07-4abd-816c-29400925783a", - "Date" : "Mon, 23 Aug 2021 08:29:01 GMT", + "x-ms-correlation-request-id" : "13592364-2fd0-483b-acf7-5ff83f7d506f", + "Date" : "Sun, 06 Mar 2022 06:50:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "98a43b0f-a1c9-4013-8022-a507832cc911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082902Z:419291f1-6c07-4abd-816c-29400925783a", + "client-request-id" : "57ab029d-2e96-4f79-a7eb-9ed711f4f4e9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065046Z:13592364-2fd0-483b-acf7-5ff83f7d506f", "Expires" : "-1", - "x-ms-request-id" : "46adbe1e-2c69-4942-ab08-3384b782edbd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/Redis/javacsmrc19834\",\"location\":\"East Asia\",\"name\":\"javacsmrc19834\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc19834.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "1faf714d-6ca2-411b-8c69-e37e21d75d09", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834/firewallRules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6354468b-2f05-4440-b257-18ca616c4c32", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "fadc58f5-fe76-4327-b661-79d719d7a7bc", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "12", + "content-length" : "771", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", + "x-ms-ratelimit-remaining-subscription-reads" : "11949", "StatusCode" : "200", - "x-ms-correlation-request-id" : "427e4a22-fcf1-4054-bd62-dd9e5e7cc3eb", - "Date" : "Mon, 23 Aug 2021 08:29:02 GMT", + "x-ms-correlation-request-id" : "43b7bb5a-6c49-4b04-a177-1c15f7c74fc4", + "Date" : "Sun, 06 Mar 2022 06:51:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "6354468b-2f05-4440-b257-18ca616c4c32", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082902Z:427e4a22-fcf1-4054-bd62-dd9e5e7cc3eb", + "client-request-id" : "fadc58f5-fe76-4327-b661-79d719d7a7bc", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065117Z:43b7bb5a-6c49-4b04-a177-1c15f7c74fc4", "Expires" : "-1", - "x-ms-request-id" : "86e2fb19-153a-4555-98a6-b8b2874028e8", - "Body" : "{\"value\":[]}", + "x-ms-request-id" : "92ac2e1e-4e45-4e7f-b266-2445e9189168", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834/patchSchedules?api-version=2020-12-01", + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "39c8e367-dfd4-4569-8821-dd1c3699aea3", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a1cec8cb-44e3-4db9-93f6-0a555782c20d", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "182", + "content-length" : "179", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", - "StatusCode" : "404", - "x-ms-correlation-request-id" : "ff1062b0-68b9-4dc9-b0de-3cd8c03b9dbb", - "Date" : "Mon, 23 Aug 2021 08:29:01 GMT", + "StatusCode" : "400", + "x-ms-correlation-request-id" : "5946afe8-bcca-4e15-82a8-27a59324d02e", + "Date" : "Sun, 06 Mar 2022 06:51:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "39c8e367-dfd4-4569-8821-dd1c3699aea3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082902Z:ff1062b0-68b9-4dc9-b0de-3cd8c03b9dbb", + "client-request-id" : "a1cec8cb-44e3-4db9-93f6-0a555782c20d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065118Z:5946afe8-bcca-4e15-82a8-27a59324d02e", "Expires" : "-1", - "x-ms-request-id" : "e9fe6af4-e40c-438b-bff2-5c94f0ad1aea", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc19834'.\\r\\nRequestID=e9fe6af4-e40c-438b-bff2-5c94f0ad1aea\",\"target\":null}}", + "x-ms-request-id" : "c1c7047b-a934-4f91-b103-7ca170dbb5c8", + "Body" : "{\"error\":{\"code\":\"BadRequest\",\"message\":\"Invalid update request: properties.sku.name cannot be updated to Basic.\\r\\nRequestID=c1c7047b-a934-4f91-b103-7ca170dbb5c8\",\"target\":null}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43675/providers/Microsoft.Cache/redis/javacsmrc19834?api-version=2020-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e97ea419-6087-4aef-982c-d5009f111700", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d8a8b2eb-c857-4fd3-9c06-960ab9abc9d1", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "content-length" : "771", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "b7979d92-4fef-426e-8e4b-dda6424c4622", - "Date" : "Mon, 23 Aug 2021 08:29:02 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "e2305ea6-c8ee-4c61-ba0a-c8859ce634b3", + "Date" : "Sun, 06 Mar 2022 06:51:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e97ea419-6087-4aef-982c-d5009f111700", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082902Z:b7979d92-4fef-426e-8e4b-dda6424c4622", + "client-request-id" : "d8a8b2eb-c857-4fd3-9c06-960ab9abc9d1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065118Z:e2305ea6-c8ee-4c61-ba0a-c8859ce634b3", "Expires" : "-1", - "x-ms-request-id" : "745b89bb-4dc6-49fd-8bfc-ff7855e57c03", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01" + "x-ms-request-id" : "b277d363-3206-4ef5-90b9-0ea05393ba74", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/Redis/javacsmrc39095\",\"location\":\"East Asia\",\"name\":\"javacsmrc39095\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc39095.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d6a1bc1f-500c-4a15-b488-9bdf03c2f15a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f0d4fb09-34f9-4eb9-879e-26fbceebdba4", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "0", + "content-length" : "12", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", - "StatusCode" : "202", - "x-ms-correlation-request-id" : "999e497e-61a7-459f-98b4-16006233f7ae", - "Date" : "Mon, 23 Aug 2021 08:29:32 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11950", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "d1295915-858e-40b0-9f45-36c7fd86f5f4", + "Date" : "Sun, 06 Mar 2022 06:51:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d6a1bc1f-500c-4a15-b488-9bdf03c2f15a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T082932Z:999e497e-61a7-459f-98b4-16006233f7ae", + "client-request-id" : "f0d4fb09-34f9-4eb9-879e-26fbceebdba4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065118Z:d1295915-858e-40b0-9f45-36c7fd86f5f4", "Expires" : "-1", - "x-ms-request-id" : "fcbb5c99-8dcf-473c-b2ca-60efe119a0fc", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01" + "x-ms-request-id" : "e568a0f7-af71-4c26-bc13-24a0323fd3eb", + "Body" : "{\"value\":[]}", + "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbcb5b93-e10f-44e4-9d9b-5efafa91aeac" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "db8b39a6-0827-4f0e-a260-58500f150bc4", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "182", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11950", + "StatusCode" : "404", + "x-ms-correlation-request-id" : "0a6a299e-84fa-40b6-9ed0-fc83a89fcba3", + "Date" : "Sun, 06 Mar 2022 06:51:18 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "db8b39a6-0827-4f0e-a260-58500f150bc4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065119Z:0a6a299e-84fa-40b6-9ed0-fc83a89fcba3", + "Expires" : "-1", + "x-ms-request-id" : "9e138e92-b92a-44c9-8581-6a9c9f817143", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc39095'.\\r\\nRequestID=9e138e92-b92a-44c9-8581-6a9c9f817143\",\"target\":null}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92023/providers/Microsoft.Cache/redis/javacsmrc39095?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bee60a4f-7854-444f-b186-395f0221e4b0", + "Content-Type" : "application/json" }, "Response" : { "content-length" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "202", - "x-ms-correlation-request-id" : "f00129d3-cbf7-4165-9f9c-fed7b9141632", - "Date" : "Mon, 23 Aug 2021 08:30:02 GMT", + "x-ms-correlation-request-id" : "2476846a-8693-45fd-8a2b-39129d2531b5", + "Date" : "Sun, 06 Mar 2022 06:51:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cbcb5b93-e10f-44e4-9d9b-5efafa91aeac", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T083002Z:f00129d3-cbf7-4165-9f9c-fed7b9141632", + "client-request-id" : "bee60a4f-7854-444f-b186-395f0221e4b0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065120Z:2476846a-8693-45fd-8a2b-39129d2531b5", "Expires" : "-1", - "x-ms-request-id" : "0ce96d46-cbf1-464b-ad23-5dfe3649f07d", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01" + "x-ms-request-id" : "e42c0819-374f-4d7a-b145-138882f5b04a", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c2f934d-9d12-4f46-8969-9c0152476661" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "61760934-e8cd-46db-8a7b-10d5885c327c" }, "Response" : { "content-length" : "0", @@ -4491,26 +4740,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", + "x-ms-ratelimit-remaining-subscription-reads" : "11947", "StatusCode" : "202", - "x-ms-correlation-request-id" : "9d465630-d725-4eb9-9abf-ba6769f330c5", - "Date" : "Mon, 23 Aug 2021 08:30:33 GMT", + "x-ms-correlation-request-id" : "b16d2587-bf1e-4797-9384-ce90ade52066", + "Date" : "Sun, 06 Mar 2022 06:51:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8c2f934d-9d12-4f46-8969-9c0152476661", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T083033Z:9d465630-d725-4eb9-9abf-ba6769f330c5", + "client-request-id" : "61760934-e8cd-46db-8a7b-10d5885c327c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065150Z:b16d2587-bf1e-4797-9384-ce90ade52066", "Expires" : "-1", - "x-ms-request-id" : "d987a944-856a-47cc-a7a6-df571d7640f5", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01" + "x-ms-request-id" : "b8609408-e98b-4360-b3e2-a5e4e884f0c6", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "905ca41c-f86e-414c-8752-c49669699458" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0a7b2cad-3212-41bc-a955-a94ee0a38ccd" }, "Response" : { "content-length" : "0", @@ -4518,26 +4767,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", + "x-ms-ratelimit-remaining-subscription-reads" : "11947", "StatusCode" : "202", - "x-ms-correlation-request-id" : "69dfb533-3fcb-482f-8998-a4b24d27d38d", - "Date" : "Mon, 23 Aug 2021 08:31:03 GMT", + "x-ms-correlation-request-id" : "6f207666-02b6-4e86-82d2-3dd5f9dfd5f3", + "Date" : "Sun, 06 Mar 2022 06:52:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "905ca41c-f86e-414c-8752-c49669699458", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T083103Z:69dfb533-3fcb-482f-8998-a4b24d27d38d", + "client-request-id" : "0a7b2cad-3212-41bc-a955-a94ee0a38ccd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065220Z:6f207666-02b6-4e86-82d2-3dd5f9dfd5f3", "Expires" : "-1", - "x-ms-request-id" : "7faee8d3-47e6-4aa3-9f9a-0bc9a9e31322", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01" + "x-ms-request-id" : "2b2a4fd6-e80f-4334-8a5c-873b19a5581d", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b337668b-17a5-41f5-aadc-d25ac301b39b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c82f4b4e-a61c-4bf2-9ed6-e84d2092c3f4" }, "Response" : { "content-length" : "0", @@ -4545,26 +4794,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", + "x-ms-ratelimit-remaining-subscription-reads" : "11948", "StatusCode" : "202", - "x-ms-correlation-request-id" : "66a03a5b-d525-4084-bfc7-9f02776a1f87", - "Date" : "Mon, 23 Aug 2021 08:31:33 GMT", + "x-ms-correlation-request-id" : "e63c47f7-aaab-4271-b0dd-47f28d47982e", + "Date" : "Sun, 06 Mar 2022 06:52:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "b337668b-17a5-41f5-aadc-d25ac301b39b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T083133Z:66a03a5b-d525-4084-bfc7-9f02776a1f87", + "client-request-id" : "c82f4b4e-a61c-4bf2-9ed6-e84d2092c3f4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065251Z:e63c47f7-aaab-4271-b0dd-47f28d47982e", "Expires" : "-1", - "x-ms-request-id" : "0b0ba59c-bd02-42d1-82c1-942338952d0a", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01" + "x-ms-request-id" : "8c9175f0-f025-4352-b0ec-a4f9bd83b7d5", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "74dd7225-13ab-4ad6-a885-9f65a9ef3661" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a49a76e0-24f2-4417-b8e8-2ecf63969cc6" }, "Response" : { "content-length" : "0", @@ -4572,26 +4821,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", + "x-ms-ratelimit-remaining-subscription-reads" : "11946", "StatusCode" : "202", - "x-ms-correlation-request-id" : "45f94dcb-40e3-404c-8929-07784608d094", - "Date" : "Mon, 23 Aug 2021 08:32:03 GMT", + "x-ms-correlation-request-id" : "3bc87087-9f24-4d67-a18d-2fb0c8a3c813", + "Date" : "Sun, 06 Mar 2022 06:53:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "74dd7225-13ab-4ad6-a885-9f65a9ef3661", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T083204Z:45f94dcb-40e3-404c-8929-07784608d094", + "client-request-id" : "a49a76e0-24f2-4417-b8e8-2ecf63969cc6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065321Z:3bc87087-9f24-4d67-a18d-2fb0c8a3c813", "Expires" : "-1", - "x-ms-request-id" : "cad67fb0-ffed-4829-a677-6c6c7c0a03af", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01" + "x-ms-request-id" : "4f9b7172-79ce-4dc0-b4cd-b5b296c3e420", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "9629742b-c0ae-43e9-9589-cd67c5ed3c1f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7906b6c4-f67a-4b9b-af41-37e2c3777e1f" }, "Response" : { "content-length" : "0", @@ -4599,26 +4848,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "x-ms-ratelimit-remaining-subscription-reads" : "11947", "StatusCode" : "202", - "x-ms-correlation-request-id" : "a957d959-fd27-4c96-b809-9b363d013704", - "Date" : "Mon, 23 Aug 2021 08:32:33 GMT", + "x-ms-correlation-request-id" : "daa1ccac-708a-442f-b14f-9f69023a6e6c", + "Date" : "Sun, 06 Mar 2022 06:53:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "9629742b-c0ae-43e9-9589-cd67c5ed3c1f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T083234Z:a957d959-fd27-4c96-b809-9b363d013704", + "client-request-id" : "7906b6c4-f67a-4b9b-af41-37e2c3777e1f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065351Z:daa1ccac-708a-442f-b14f-9f69023a6e6c", "Expires" : "-1", - "x-ms-request-id" : "bc4cb066-f90e-4327-b8af-463e96b4bfde", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01" + "x-ms-request-id" : "1bba472e-15a3-45c8-ae9a-f92ccdd35594", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "95842648-bdfc-4a6c-bb33-96607bc6ab3f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1393c3cc-789c-49da-b81e-f520a5b12ccd" }, "Response" : { "content-length" : "0", @@ -4626,26 +4875,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "x-ms-ratelimit-remaining-subscription-reads" : "11945", "StatusCode" : "202", - "x-ms-correlation-request-id" : "e4ae5b28-2c97-46b4-91ab-9cd4551ff838", - "Date" : "Mon, 23 Aug 2021 08:33:03 GMT", + "x-ms-correlation-request-id" : "7b3c8d39-c700-4f9d-9f90-0e843ed8db0b", + "Date" : "Sun, 06 Mar 2022 06:54:21 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "95842648-bdfc-4a6c-bb33-96607bc6ab3f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T083304Z:e4ae5b28-2c97-46b4-91ab-9cd4551ff838", + "client-request-id" : "1393c3cc-789c-49da-b81e-f520a5b12ccd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065421Z:7b3c8d39-c700-4f9d-9f90-0e843ed8db0b", "Expires" : "-1", - "x-ms-request-id" : "fcf6a66f-2961-45a9-ac45-5642fd1f782b", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01" + "x-ms-request-id" : "98231b92-0aec-4142-a011-4c2e194305ca", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "23dc068b-9760-4b59-a49d-8edada5a4ee7" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4a2228e0-c1ae-4d5e-9840-9def23e5cec1" }, "Response" : { "content-length" : "0", @@ -4653,26 +4902,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "x-ms-ratelimit-remaining-subscription-reads" : "11946", "StatusCode" : "202", - "x-ms-correlation-request-id" : "a053b18f-f013-4a3c-8f12-94809dcf0341", - "Date" : "Mon, 23 Aug 2021 08:33:33 GMT", + "x-ms-correlation-request-id" : "95bd6020-4718-4767-bc5b-9ff764225b74", + "Date" : "Sun, 06 Mar 2022 06:54:52 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "23dc068b-9760-4b59-a49d-8edada5a4ee7", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T083334Z:a053b18f-f013-4a3c-8f12-94809dcf0341", + "client-request-id" : "4a2228e0-c1ae-4d5e-9840-9def23e5cec1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065452Z:95bd6020-4718-4767-bc5b-9ff764225b74", "Expires" : "-1", - "x-ms-request-id" : "a73a6c4f-654c-4d5a-947f-8dad0999f251", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01" + "x-ms-request-id" : "409ae584-7320-48f1-ad63-fda0042a10ee", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/745b89bb-4dc6-49fd-8bfc-ff7855e57c03?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e42c0819-374f-4d7a-b145-138882f5b04a?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a1ac0f1-e231-407e-adb7-aa20cb75fac9" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "01c91a89-6406-4929-b19f-c51af6ac93ac" }, "Response" : { "content-length" : "0", @@ -4680,69 +4929,69 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", + "x-ms-ratelimit-remaining-subscription-reads" : "11944", "StatusCode" : "200", - "x-ms-correlation-request-id" : "eaa232be-7d80-43b6-9dc3-3c4cca764d34", - "Date" : "Mon, 23 Aug 2021 08:34:04 GMT", + "x-ms-correlation-request-id" : "d1a28f63-6dae-4db8-bad8-14f86965fd43", + "Date" : "Sun, 06 Mar 2022 06:55:22 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "4b18d3df-50c9-4f2d-9924-880cb843c396", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "7a1ac0f1-e231-407e-adb7-aa20cb75fac9", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T083405Z:eaa232be-7d80-43b6-9dc3-3c4cca764d34", + "client-request-id" : "01c91a89-6406-4929-b19f-c51af6ac93ac", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065522Z:d1a28f63-6dae-4db8-bad8-14f86965fd43", "Expires" : "-1", - "x-ms-request-id" : "781c5d54-9fec-4685-803b-8304829441f9" + "x-ms-request-id" : "7ea99420-bb44-4d95-aee2-e267db5f3778" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg43675?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg92023?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "275caa12-8f3d-4971-90a5-8d1fa34b5098", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b1ec374d-30b7-4e0e-bb93-fc8f21628f75", "Content-Type" : "application/json" }, "Response" : { "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "x-ms-correlation-request-id" : "72690bec-73ed-43f8-819a-f755501dff1c", - "Date" : "Mon, 23 Aug 2021 08:34:06 GMT", + "x-ms-correlation-request-id" : "a56b45b2-8fe4-4266-9e52-871944bc0227", + "Date" : "Sun, 06 Mar 2022 06:55:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T083406Z:72690bec-73ed-43f8-819a-f755501dff1c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065524Z:a56b45b2-8fe4-4266-9e52-871944bc0227", "Expires" : "-1", - "x-ms-request-id" : "72690bec-73ed-43f8-819a-f755501dff1c", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MzY3NS1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2021-01-01" + "x-ms-request-id" : "a56b45b2-8fe4-4266-9e52-871944bc0227", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjAyMy1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2021-01-01" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg43675Second?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg92023Second?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.8.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2d573f66-3708-4dec-9cdb-769bbb38663b", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bfa04364-a4fc-4aa1-8d6c-11b10acb3485", "Content-Type" : "application/json" }, "Response" : { "content-length" : "0", - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "x-ms-correlation-request-id" : "ad805357-d182-43f0-a124-e4f474d8ce75", - "Date" : "Mon, 23 Aug 2021 08:34:11 GMT", + "x-ms-correlation-request-id" : "7d00b5f7-c678-4d5b-b990-4c60e0026689", + "Date" : "Sun, 06 Mar 2022 06:55:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20210823T083411Z:ad805357-d182-43f0-a124-e4f474d8ce75", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065529Z:7d00b5f7-c678-4d5b-b990-4c60e0026689", "Expires" : "-1", - "x-ms-request-id" : "ad805357-d182-43f0-a124-e4f474d8ce75", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MzY3NVNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2021-01-01" + "x-ms-request-id" : "7d00b5f7-c678-4d5b-b990-4c60e0026689", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjAyM1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2021-01-01" }, "Exception" : null } ], - "variables" : [ "javacsmrg43675", "javacsmrc19834", "javacsmsa95586" ] -} + "variables" : [ "javacsmrg92023", "javacsmrc39095", "javacsmsa20108" ] +} \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canCreateRedisWithRdbAof.json b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canCreateRedisWithRdbAof.json index 5949eda27cdfb..9ebee48172e36 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canCreateRedisWithRdbAof.json +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canCreateRedisWithRdbAof.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg14346?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg75545?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "874a2da4-7721-4e58-ad09-b9fe9e119fe2", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "19f0b748-d787-4c20-8e0e-2ccb26f932d6", "Content-Type" : "application/json" }, "Response" : { @@ -14,23 +14,23 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "36d63c0e-866b-4173-be39-32c7b5d3c0fa", - "Date" : "Tue, 30 Nov 2021 08:08:32 GMT", + "x-ms-correlation-request-id" : "fedaec67-2740-40bf-8cb0-8c6dd5b3e13c", + "Date" : "Sun, 06 Mar 2022 06:20:36 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T080832Z:36d63c0e-866b-4173-be39-32c7b5d3c0fa", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062037Z:fedaec67-2740-40bf-8cb0-8c6dd5b3e13c", "Expires" : "-1", - "x-ms-request-id" : "36d63c0e-866b-4173-be39-32c7b5d3c0fa", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346\",\"name\":\"javacsmrg14346\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus3\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "fedaec67-2740-40bf-8cb0-8c6dd5b3e13c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545\",\"name\":\"javacsmrg75545\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus3\",\"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/javacsmrg14346/providers/Microsoft.Storage/storageAccounts/javacsmsa14331?api-version=2021-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Storage/storageAccounts/javacsmsa16520?api-version=2021-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "000fd723-ec23-4eb4-b263-02f106cf3070", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c2146491-4eef-4a5f-bf22-3a874b22dfa6", "Content-Type" : "application/json" }, "Response" : { @@ -40,81 +40,81 @@ "x-ms-ratelimit-remaining-subscription-writes" : "1198", "Pragma" : "no-cache", "StatusCode" : "202", - "x-ms-correlation-request-id" : "2828f0bd-871b-431c-897f-3c27bb4947c1", - "Date" : "Tue, 30 Nov 2021 08:08:39 GMT", + "x-ms-correlation-request-id" : "a31ab211-0d48-4428-99ae-0aeaef705e04", + "Date" : "Sun, 06 Mar 2022 06:20:45 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T080839Z:2828f0bd-871b-431c-897f-3c27bb4947c1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062045Z:a31ab211-0d48-4428-99ae-0aeaef705e04", "Expires" : "-1", - "x-ms-request-id" : "70c0a2b7-4092-4a4b-9df5-3c52cbf27f84", + "x-ms-request-id" : "a90706d6-8baf-4fc9-9787-4f81135df0b2", "Body" : "", - "x-ms-client-request-id" : "000fd723-ec23-4eb4-b263-02f106cf3070", + "x-ms-client-request-id" : "c2146491-4eef-4a5f-bf22-3a874b22dfa6", "Content-Type" : "text/plain; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/70c0a2b7-4092-4a4b-9df5-3c52cbf27f84?monitor=true&api-version=2021-08-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/a90706d6-8baf-4fc9-9787-4f81135df0b2?monitor=true&api-version=2021-08-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/70c0a2b7-4092-4a4b-9df5-3c52cbf27f84?monitor=true&api-version=2021-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/a90706d6-8baf-4fc9-9787-4f81135df0b2?monitor=true&api-version=2021-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "6676c6b7-db5e-4e62-9068-88afca25cc3e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "51df6cf6-298c-4ce0-83b1-d9806b1b6860" }, "Response" : { - "content-length" : "1790", + "content-length" : "1819", "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" : "11999", "StatusCode" : "200", - "x-ms-correlation-request-id" : "27699a43-01ba-45f1-a162-2e86ff472f1a", - "Date" : "Tue, 30 Nov 2021 08:08:56 GMT", + "x-ms-correlation-request-id" : "b0e33e2d-1d84-4fdc-b31b-c3001694fc67", + "Date" : "Sun, 06 Mar 2022 06:21:03 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T080857Z:27699a43-01ba-45f1-a162-2e86ff472f1a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062103Z:b0e33e2d-1d84-4fdc-b31b-c3001694fc67", "Expires" : "-1", - "x-ms-request-id" : "7c01ed06-ca2b-4e6f-842e-60c6b4fc7a92", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Storage/storageAccounts/javacsmsa14331\",\"name\":\"javacsmsa14331\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus3\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-11-30T08:08:37.5332175Z\",\"key2\":\"2021-11-30T08:08:37.5332175Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-11-30T08:08:37.5332175Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-11-30T08:08:37.5332175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-11-30T08:08:37.4863423Z\",\"primaryEndpoints\":{\"dfs\":\"https://javacsmsa14331.dfs.core.windows.net/\",\"web\":\"https://javacsmsa14331.z1.web.core.windows.net/\",\"blob\":\"https://javacsmsa14331.blob.core.windows.net/\",\"queue\":\"https://javacsmsa14331.queue.core.windows.net/\",\"table\":\"https://javacsmsa14331.table.core.windows.net/\",\"file\":\"https://javacsmsa14331.file.core.windows.net/\"},\"primaryLocation\":\"westus3\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://javacsmsa14331-secondary.dfs.core.windows.net/\",\"web\":\"https://javacsmsa14331-secondary.z1.web.core.windows.net/\",\"blob\":\"https://javacsmsa14331-secondary.blob.core.windows.net/\",\"queue\":\"https://javacsmsa14331-secondary.queue.core.windows.net/\",\"table\":\"https://javacsmsa14331-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "6676c6b7-db5e-4e62-9068-88afca25cc3e", + "x-ms-request-id" : "aadc1d97-d0fb-4067-820e-11eb9679681c", + "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Storage/storageAccounts/javacsmsa16520\",\"name\":\"javacsmsa16520\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus3\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2022-03-06T06:20:43.2316754Z\",\"key2\":\"2022-03-06T06:20:43.2316754Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2022-03-06T06:20:43.2473699Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2022-03-06T06:20:43.2473699Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2022-03-06T06:20:43.1691754Z\",\"primaryEndpoints\":{\"dfs\":\"https://javacsmsa16520.dfs.core.windows.net/\",\"web\":\"https://javacsmsa16520.z1.web.core.windows.net/\",\"blob\":\"https://javacsmsa16520.blob.core.windows.net/\",\"queue\":\"https://javacsmsa16520.queue.core.windows.net/\",\"table\":\"https://javacsmsa16520.table.core.windows.net/\",\"file\":\"https://javacsmsa16520.file.core.windows.net/\"},\"primaryLocation\":\"westus3\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://javacsmsa16520-secondary.dfs.core.windows.net/\",\"web\":\"https://javacsmsa16520-secondary.z1.web.core.windows.net/\",\"blob\":\"https://javacsmsa16520-secondary.blob.core.windows.net/\",\"queue\":\"https://javacsmsa16520-secondary.queue.core.windows.net/\",\"table\":\"https://javacsmsa16520-secondary.table.core.windows.net/\"}}}", + "x-ms-client-request-id" : "51df6cf6-298c-4ce0-83b1-d9806b1b6860", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Storage/storageAccounts/javacsmsa14331?api-version=2021-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Storage/storageAccounts/javacsmsa16520?api-version=2021-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "f167370a-d886-4e3f-9c13-18ae867e3842", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0911b90d-ab2f-4eff-ae38-936282b788ff", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "1790", + "content-length" : "1819", "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" : "11999", "StatusCode" : "200", - "x-ms-correlation-request-id" : "04b4d8b2-2ef4-4253-a286-7d252bca2b11", - "Date" : "Tue, 30 Nov 2021 08:08:58 GMT", + "x-ms-correlation-request-id" : "1a62bb23-602f-47c6-92d8-ec7a606d828e", + "Date" : "Sun, 06 Mar 2022 06:21:04 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T080858Z:04b4d8b2-2ef4-4253-a286-7d252bca2b11", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062104Z:1a62bb23-602f-47c6-92d8-ec7a606d828e", "Expires" : "-1", - "x-ms-request-id" : "d0361269-eeae-4978-a2a0-ab05f4884bb5", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Storage/storageAccounts/javacsmsa14331\",\"name\":\"javacsmsa14331\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus3\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2021-11-30T08:08:37.5332175Z\",\"key2\":\"2021-11-30T08:08:37.5332175Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-11-30T08:08:37.5332175Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2021-11-30T08:08:37.5332175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2021-11-30T08:08:37.4863423Z\",\"primaryEndpoints\":{\"dfs\":\"https://javacsmsa14331.dfs.core.windows.net/\",\"web\":\"https://javacsmsa14331.z1.web.core.windows.net/\",\"blob\":\"https://javacsmsa14331.blob.core.windows.net/\",\"queue\":\"https://javacsmsa14331.queue.core.windows.net/\",\"table\":\"https://javacsmsa14331.table.core.windows.net/\",\"file\":\"https://javacsmsa14331.file.core.windows.net/\"},\"primaryLocation\":\"westus3\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://javacsmsa14331-secondary.dfs.core.windows.net/\",\"web\":\"https://javacsmsa14331-secondary.z1.web.core.windows.net/\",\"blob\":\"https://javacsmsa14331-secondary.blob.core.windows.net/\",\"queue\":\"https://javacsmsa14331-secondary.queue.core.windows.net/\",\"table\":\"https://javacsmsa14331-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "f167370a-d886-4e3f-9c13-18ae867e3842", + "x-ms-request-id" : "a2108dcb-526b-479f-bca5-8efc60230e9e", + "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Storage/storageAccounts/javacsmsa16520\",\"name\":\"javacsmsa16520\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus3\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2022-03-06T06:20:43.2316754Z\",\"key2\":\"2022-03-06T06:20:43.2316754Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2022-03-06T06:20:43.2473699Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2022-03-06T06:20:43.2473699Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2022-03-06T06:20:43.1691754Z\",\"primaryEndpoints\":{\"dfs\":\"https://javacsmsa16520.dfs.core.windows.net/\",\"web\":\"https://javacsmsa16520.z1.web.core.windows.net/\",\"blob\":\"https://javacsmsa16520.blob.core.windows.net/\",\"queue\":\"https://javacsmsa16520.queue.core.windows.net/\",\"table\":\"https://javacsmsa16520.table.core.windows.net/\",\"file\":\"https://javacsmsa16520.file.core.windows.net/\"},\"primaryLocation\":\"westus3\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://javacsmsa16520-secondary.dfs.core.windows.net/\",\"web\":\"https://javacsmsa16520-secondary.z1.web.core.windows.net/\",\"blob\":\"https://javacsmsa16520-secondary.blob.core.windows.net/\",\"queue\":\"https://javacsmsa16520-secondary.queue.core.windows.net/\",\"table\":\"https://javacsmsa16520-secondary.table.core.windows.net/\"}}}", + "x-ms-client-request-id" : "0911b90d-ab2f-4eff-ae38-936282b788ff", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Storage/storageAccounts/javacsmsa14331/listKeys?api-version=2021-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Storage/storageAccounts/javacsmsa16520/listKeys?api-version=2021-08-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "020f1e77-7ce4-439b-95a8-5cd0b2728094", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "67ddb2f7-7af2-4855-9da9-d734e64e34fb", "Content-Type" : "application/json" }, "Response" : { @@ -124,111 +124,56 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d6437ef5-c84b-4f67-9b9a-ce2bc26cabc2", - "Date" : "Tue, 30 Nov 2021 08:08:58 GMT", + "x-ms-correlation-request-id" : "c6f4eba5-37fa-40d5-85c9-7dd4cca78c11", + "Date" : "Sun, 06 Mar 2022 06:21:04 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T080858Z:d6437ef5-c84b-4f67-9b9a-ce2bc26cabc2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062105Z:c6f4eba5-37fa-40d5-85c9-7dd4cca78c11", "Expires" : "-1", - "x-ms-request-id" : "db2ea464-b162-48bd-a2ea-40adcb452fb6", - "Body" : "{\"keys\":[{\"creationTime\":\"2021-11-30T08:08:37.5332175Z\",\"keyName\":\"key1\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"},{\"creationTime\":\"2021-11-30T08:08:37.5332175Z\",\"keyName\":\"key2\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"}]}", - "x-ms-client-request-id" : "020f1e77-7ce4-439b-95a8-5cd0b2728094", + "x-ms-request-id" : "2d9fc6f5-c9ae-4e3f-9598-a9b6a5621f4e", + "Body" : "{\"keys\":[{\"creationTime\":\"2022-03-06T06:20:43.2316754Z\",\"keyName\":\"key1\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"},{\"creationTime\":\"2022-03-06T06:20:43.2316754Z\",\"keyName\":\"key2\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"}]}", + "x-ms-client-request-id" : "67ddb2f7-7af2-4855-9da9-d734e64e34fb", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ea49d30-fda2-40d4-b0a5-d2b1232b56f6", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ba628a13-f5e0-41a8-9552-39f894c825c0", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "1234", + "content-length" : "1600", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "c652fc1d-e7be-4962-bbe6-502932e223f5", - "Date" : "Tue, 30 Nov 2021 08:09:10 GMT", + "x-ms-correlation-request-id" : "3349dbe5-515b-42b9-9fe7-426327cdcd23", + "Date" : "Sun, 06 Mar 2022 06:21:14 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "9ea49d30-fda2-40d4-b0a5-d2b1232b56f6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T080910Z:c652fc1d-e7be-4962-bbe6-502932e223f5", + "client-request-id" : "ba628a13-f5e0-41a8-9552-39f894c825c0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062115Z:3349dbe5-515b-42b9-9fe7-426327cdcd23", "Expires" : "-1", - "x-ms-request-id" : "0eb879c8-6d47-41fc-835e-5cede3ded332", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;AccountName=javacsmsa14331;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"},\"accessKeys\":{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"},\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West US 3/asyncOperations/f6043cd9-ccb7-48c2-856b-2cfa2ebf1857?api-version=2021-06-01", + "x-ms-request-id" : "f6043cd9-ccb7-48c2-856b-2cfa2ebf1857", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\r\n \"location\": \"West US 3\",\r\n \"name\": \"javacsmrc03795\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.1.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"rdb-backup-enabled\": \"true\",\r\n \"rdb-backup-frequency\": \"15\",\r\n \"rdb-backup-max-snapshot-count\": \"1\",\r\n \"maxmemory-delta\": \"642\",\r\n \"rdb-storage-connection-string\": \"DefaultEndpointsProtocol=https;AccountName=javacsmsa16520;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"***REMOVED***\",\r\n \"secondaryKey\": \"***REMOVED***\"\r\n },\r\n \"hostName\": \"javacsmrc03795.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4b66b9f-d7c1-45df-97d1-692f725b0da2" - }, - "Response" : { - "content-length" : "1039", - "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", - "x-ms-correlation-request-id" : "811f3ec4-b67e-4071-b657-47353656c494", - "Date" : "Tue, 30 Nov 2021 08:09:41 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", - "Cache-Control" : "no-cache", - "client-request-id" : "d4b66b9f-d7c1-45df-97d1-692f725b0da2", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T080941Z:811f3ec4-b67e-4071-b657-47353656c494", - "Expires" : "-1", - "x-ms-request-id" : "493835d2-a7bc-4819-aa06-fc258e0f6133", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "caadbe9b-eaf9-4ab1-bb81-2edfef269651" - }, - "Response" : { - "content-length" : "1039", - "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", - "x-ms-correlation-request-id" : "e9ac632e-bba9-4738-9d02-bd4e51a7d7ea", - "Date" : "Tue, 30 Nov 2021 08:10:12 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", - "Cache-Control" : "no-cache", - "client-request-id" : "caadbe9b-eaf9-4ab1-bb81-2edfef269651", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081012Z:e9ac632e-bba9-4738-9d02-bd4e51a7d7ea", - "Expires" : "-1", - "x-ms-request-id" : "dd80d8b6-2571-494b-969e-1eaf14f0bd8a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "7441d2fc-9f03-4ecb-94a2-6f28ec084489" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a29fb740-dc08-4c3a-9f23-c8a07159a7e0" }, "Response" : { "content-length" : "1039", @@ -238,25 +183,25 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ca8371e8-f473-4759-84c9-874449ef0e51", - "Date" : "Tue, 30 Nov 2021 08:10:43 GMT", + "x-ms-correlation-request-id" : "7e8eb2f2-9459-4788-89bc-8601f4a0c5c3", + "Date" : "Sun, 06 Mar 2022 06:21:44 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "7441d2fc-9f03-4ecb-94a2-6f28ec084489", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081043Z:ca8371e8-f473-4759-84c9-874449ef0e51", + "client-request-id" : "a29fb740-dc08-4c3a-9f23-c8a07159a7e0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062145Z:7e8eb2f2-9459-4788-89bc-8601f4a0c5c3", "Expires" : "-1", - "x-ms-request-id" : "6ddc8c6f-c6e6-4731-b76f-555e4cb8a272", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "4e09aa4c-fcb5-43af-bfbf-fe12150d1368", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff632705-c59b-49e6-8d9f-e0aa8f363d33" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4edaf54d-8f7d-4f66-b0ea-aa5acf0025fe" }, "Response" : { "content-length" : "1039", @@ -264,27 +209,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "x-ms-correlation-request-id" : "fd66659f-3991-4e0a-b3cb-a8c8fe2a233b", - "Date" : "Tue, 30 Nov 2021 08:11:13 GMT", + "x-ms-correlation-request-id" : "0481ccfb-76fd-4248-b513-1569ecbdb274", + "Date" : "Sun, 06 Mar 2022 06:22:14 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ff632705-c59b-49e6-8d9f-e0aa8f363d33", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081114Z:fd66659f-3991-4e0a-b3cb-a8c8fe2a233b", + "client-request-id" : "4edaf54d-8f7d-4f66-b0ea-aa5acf0025fe", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062215Z:0481ccfb-76fd-4248-b513-1569ecbdb274", "Expires" : "-1", - "x-ms-request-id" : "ed85d141-ce56-42a3-af32-edcf93fb2191", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "4c456c59-c2d2-45fc-aae5-c69542c3051e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "165a7c91-fe35-400d-8958-f411a888f282" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d758051f-412e-493d-9697-692d208bc0cf" }, "Response" : { "content-length" : "1039", @@ -292,27 +237,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bf373df5-72d0-4e29-8c47-8adb927b08df", - "Date" : "Tue, 30 Nov 2021 08:11:44 GMT", + "x-ms-correlation-request-id" : "b0cd0678-7035-43b2-9446-4c23103bce54", + "Date" : "Sun, 06 Mar 2022 06:22:45 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "165a7c91-fe35-400d-8958-f411a888f282", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081145Z:bf373df5-72d0-4e29-8c47-8adb927b08df", + "client-request-id" : "d758051f-412e-493d-9697-692d208bc0cf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062245Z:b0cd0678-7035-43b2-9446-4c23103bce54", "Expires" : "-1", - "x-ms-request-id" : "5f92ead3-da92-4012-8aa4-528e191785e0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "18052e6e-1803-4814-86c8-1068781b92fb", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "56a2e0bc-7bfe-48cd-b67c-0ac800d6044a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "84b4fc35-7464-44d7-8cba-cd88f543b131" }, "Response" : { "content-length" : "1039", @@ -320,27 +265,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bbac5f0f-1180-46b8-b16b-cef5c267e953", - "Date" : "Tue, 30 Nov 2021 08:12:15 GMT", + "x-ms-correlation-request-id" : "0ad16f35-b9f7-45d9-93f4-a6b51fdaf1c1", + "Date" : "Sun, 06 Mar 2022 06:23:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "56a2e0bc-7bfe-48cd-b67c-0ac800d6044a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081216Z:bbac5f0f-1180-46b8-b16b-cef5c267e953", + "client-request-id" : "84b4fc35-7464-44d7-8cba-cd88f543b131", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062316Z:0ad16f35-b9f7-45d9-93f4-a6b51fdaf1c1", "Expires" : "-1", - "x-ms-request-id" : "ea7d0b53-57fe-4fec-b08e-a5c6639cbf0a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "8927f817-d0ef-4b69-b55d-0f09042d45f9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "76afa421-8e72-4689-b822-afaf0046ed35" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e3979d90-f1af-4a8b-bfd4-15b51dc7a786" }, "Response" : { "content-length" : "1039", @@ -348,27 +293,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "x-ms-correlation-request-id" : "816de230-96da-4a54-baab-51fa44ba8275", - "Date" : "Tue, 30 Nov 2021 08:12:46 GMT", + "x-ms-correlation-request-id" : "37587dbc-5630-4bd9-824c-d90f4d4a8586", + "Date" : "Sun, 06 Mar 2022 06:23:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "76afa421-8e72-4689-b822-afaf0046ed35", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081247Z:816de230-96da-4a54-baab-51fa44ba8275", + "client-request-id" : "e3979d90-f1af-4a8b-bfd4-15b51dc7a786", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062346Z:37587dbc-5630-4bd9-824c-d90f4d4a8586", "Expires" : "-1", - "x-ms-request-id" : "8f097526-7c8b-4b27-aa3d-29c68b1b26bf", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "9c942ece-1692-4e38-84e9-f93e9abbcdc5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "15de4526-4cc3-4e6a-bdd3-26ea65e191c0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "30d1752d-98c5-483c-9130-300d25aaa5ea" }, "Response" : { "content-length" : "1039", @@ -376,27 +321,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11995", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "x-ms-correlation-request-id" : "cf3ce93e-be24-4a09-9050-13701f0bbc50", - "Date" : "Tue, 30 Nov 2021 08:13:17 GMT", + "x-ms-correlation-request-id" : "def20260-0c68-4b51-9428-e050e49736ff", + "Date" : "Sun, 06 Mar 2022 06:24:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "15de4526-4cc3-4e6a-bdd3-26ea65e191c0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081318Z:cf3ce93e-be24-4a09-9050-13701f0bbc50", + "client-request-id" : "30d1752d-98c5-483c-9130-300d25aaa5ea", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062416Z:def20260-0c68-4b51-9428-e050e49736ff", "Expires" : "-1", - "x-ms-request-id" : "4304f21f-0eae-4824-97a3-769ebaef89d2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "a3904dd0-ab64-4f3a-9893-fac9095b1481", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "d402355b-726d-4d83-8acf-cee38a966593" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7ce53658-e95c-48da-bf0a-e820304bbe90" }, "Response" : { "content-length" : "1039", @@ -404,27 +349,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8b4b994b-4ce4-4f87-84ab-f8c5f621a8b5", - "Date" : "Tue, 30 Nov 2021 08:13:48 GMT", + "x-ms-correlation-request-id" : "d3e32dc4-f37c-4ce6-917e-b50433ed0fc3", + "Date" : "Sun, 06 Mar 2022 06:24:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d402355b-726d-4d83-8acf-cee38a966593", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081348Z:8b4b994b-4ce4-4f87-84ab-f8c5f621a8b5", + "client-request-id" : "7ce53658-e95c-48da-bf0a-e820304bbe90", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062447Z:d3e32dc4-f37c-4ce6-917e-b50433ed0fc3", "Expires" : "-1", - "x-ms-request-id" : "56c551b6-d6f1-4de7-91e9-09485a9bdd8f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c4a30e3d-2328-4245-a00f-b13767385260", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "fcfb5412-0515-44b2-adcf-b2e4d7191072" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1d687ef8-1b70-49b7-aac6-9368b7304275" }, "Response" : { "content-length" : "1039", @@ -432,27 +377,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "x-ms-correlation-request-id" : "5f63173f-5841-438f-8e07-b9009628296d", - "Date" : "Tue, 30 Nov 2021 08:14:19 GMT", + "x-ms-correlation-request-id" : "d4d38ed4-a067-4501-92ee-16cbe44bd971", + "Date" : "Sun, 06 Mar 2022 06:25:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "fcfb5412-0515-44b2-adcf-b2e4d7191072", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081419Z:5f63173f-5841-438f-8e07-b9009628296d", + "client-request-id" : "1d687ef8-1b70-49b7-aac6-9368b7304275", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062517Z:d4d38ed4-a067-4501-92ee-16cbe44bd971", "Expires" : "-1", - "x-ms-request-id" : "cada31c9-696c-4900-bac0-fc27734565d9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "0ddc83b4-4abb-4579-8dc0-afc9d67efb39", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5e46440-4e93-49f7-857b-3ff9020da505" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d78b27cc-9d91-471a-9985-53a3c5dcf8f4" }, "Response" : { "content-length" : "1039", @@ -460,27 +405,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a858ae6b-3d3d-47ff-8a97-2788c543442a", - "Date" : "Tue, 30 Nov 2021 08:14:50 GMT", + "x-ms-correlation-request-id" : "edb2b017-37a6-46c6-8f01-417da7fb3efb", + "Date" : "Sun, 06 Mar 2022 06:25:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e5e46440-4e93-49f7-857b-3ff9020da505", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081450Z:a858ae6b-3d3d-47ff-8a97-2788c543442a", + "client-request-id" : "d78b27cc-9d91-471a-9985-53a3c5dcf8f4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062548Z:edb2b017-37a6-46c6-8f01-417da7fb3efb", "Expires" : "-1", - "x-ms-request-id" : "4b64b0d5-ed45-422f-9bb9-53b1d3db1378", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "147319fe-4337-471c-b43c-d464011ff4a1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "feecb678-1d03-4aee-a24a-819bc4f76bab" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ecb82d39-d6a8-45f8-9177-578a56fd1bb1" }, "Response" : { "content-length" : "1039", @@ -488,27 +433,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "x-ms-correlation-request-id" : "60935f67-179c-40da-8c17-60722c6a3f7c", - "Date" : "Tue, 30 Nov 2021 08:15:21 GMT", + "x-ms-correlation-request-id" : "e5e726b0-6326-46f5-9682-b6cbb73c346d", + "Date" : "Sun, 06 Mar 2022 06:26:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "feecb678-1d03-4aee-a24a-819bc4f76bab", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081521Z:60935f67-179c-40da-8c17-60722c6a3f7c", + "client-request-id" : "ecb82d39-d6a8-45f8-9177-578a56fd1bb1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062618Z:e5e726b0-6326-46f5-9682-b6cbb73c346d", "Expires" : "-1", - "x-ms-request-id" : "307772a9-4231-441f-9990-7456b86aa52f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "8df4179a-9175-4b39-a6e4-15dc56b0fb10", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "4811c020-8807-4f60-a193-bf5a5ca8c5a0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "50161167-411e-4400-9bbe-41186cfc2de5" }, "Response" : { "content-length" : "1039", @@ -516,27 +461,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a31885eb-86c1-48e1-9a12-59eea728871d", - "Date" : "Tue, 30 Nov 2021 08:15:52 GMT", + "x-ms-correlation-request-id" : "81215973-c71c-4d17-82ca-239213b207a0", + "Date" : "Sun, 06 Mar 2022 06:26:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4811c020-8807-4f60-a193-bf5a5ca8c5a0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081552Z:a31885eb-86c1-48e1-9a12-59eea728871d", + "client-request-id" : "50161167-411e-4400-9bbe-41186cfc2de5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062648Z:81215973-c71c-4d17-82ca-239213b207a0", "Expires" : "-1", - "x-ms-request-id" : "dcada5eb-553a-4e4e-82e5-ebfeb3a5df28", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "75c09040-3548-475e-a0d6-3c89ee2f20d3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "771241c4-fba1-46e4-8704-bb61b96b3333" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "050b4914-0fba-4f67-aea0-320183c8b6ca" }, "Response" : { "content-length" : "1039", @@ -544,27 +489,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "x-ms-correlation-request-id" : "325c5ac0-bbca-4622-b10c-29643ad0fcaf", - "Date" : "Tue, 30 Nov 2021 08:16:23 GMT", + "x-ms-correlation-request-id" : "c8751dd1-714c-4d17-ab1a-5bddb9c46b16", + "Date" : "Sun, 06 Mar 2022 06:27:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "771241c4-fba1-46e4-8704-bb61b96b3333", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081623Z:325c5ac0-bbca-4622-b10c-29643ad0fcaf", + "client-request-id" : "050b4914-0fba-4f67-aea0-320183c8b6ca", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062718Z:c8751dd1-714c-4d17-ab1a-5bddb9c46b16", "Expires" : "-1", - "x-ms-request-id" : "b535174d-9cdd-4900-9dd8-b0d2c9f9c047", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "30d7e84c-1e3d-4996-a5b8-ea783f7550c1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca78b166-3ac7-48d8-946d-2ec687ca1592" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1a34bdf7-b12d-411a-847c-421da0125a1d" }, "Response" : { "content-length" : "1039", @@ -572,27 +517,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "x-ms-correlation-request-id" : "086772c9-327b-4f67-8a7b-1b121910e7b2", - "Date" : "Tue, 30 Nov 2021 08:16:55 GMT", + "x-ms-correlation-request-id" : "b9022fa1-29e4-4632-ba04-995b598514a0", + "Date" : "Sun, 06 Mar 2022 06:27:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ca78b166-3ac7-48d8-946d-2ec687ca1592", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081655Z:086772c9-327b-4f67-8a7b-1b121910e7b2", + "client-request-id" : "1a34bdf7-b12d-411a-847c-421da0125a1d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062750Z:b9022fa1-29e4-4632-ba04-995b598514a0", "Expires" : "-1", - "x-ms-request-id" : "557e0301-7b05-4bb5-8a0b-0cc79585287d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "f6c482dd-616e-4d8f-a337-4c20615fb457", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "efbb6995-dad9-4520-9adc-97342b08bc0b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9c62f60d-04de-40da-85c0-7166e0369160" }, "Response" : { "content-length" : "1039", @@ -600,27 +545,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "x-ms-correlation-request-id" : "fdb7597e-009f-42de-970c-790af4bd0590", - "Date" : "Tue, 30 Nov 2021 08:17:26 GMT", + "x-ms-correlation-request-id" : "bb1fe288-380b-4990-aead-d521795f8135", + "Date" : "Sun, 06 Mar 2022 06:28:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "efbb6995-dad9-4520-9adc-97342b08bc0b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081726Z:fdb7597e-009f-42de-970c-790af4bd0590", + "client-request-id" : "9c62f60d-04de-40da-85c0-7166e0369160", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062821Z:bb1fe288-380b-4990-aead-d521795f8135", "Expires" : "-1", - "x-ms-request-id" : "a5ba5e7b-e192-4793-be52-59265f3bd6ca", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "3584f2a3-e64c-48f6-843b-2d6e1835b522", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "99507aaa-059d-41ae-a515-5b85a6564f9b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "bc6e1459-b0ea-42f1-b063-5bcb4d251ddb" }, "Response" : { "content-length" : "1039", @@ -628,27 +573,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bbba78ad-d5fd-427e-8ae2-d1516cafedd4", - "Date" : "Tue, 30 Nov 2021 08:17:58 GMT", + "x-ms-correlation-request-id" : "1e932d23-b7c1-4eec-8707-ed1eeb05ee11", + "Date" : "Sun, 06 Mar 2022 06:28:51 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "99507aaa-059d-41ae-a515-5b85a6564f9b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081758Z:bbba78ad-d5fd-427e-8ae2-d1516cafedd4", + "client-request-id" : "bc6e1459-b0ea-42f1-b063-5bcb4d251ddb", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062851Z:1e932d23-b7c1-4eec-8707-ed1eeb05ee11", "Expires" : "-1", - "x-ms-request-id" : "cf2b66f2-27e3-4bf7-a376-81cf2739b2ea", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "a248edc4-0f6d-48c2-8540-5cf5dfecc5c3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "c03c6482-842d-4a6c-80ea-aa6d4824a9a2" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8bc656a8-65fe-488a-8305-0a84ab9b6a43" }, "Response" : { "content-length" : "1039", @@ -656,27 +601,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6ba6f3c1-2e2c-4ae8-97d8-f7782d861f79", - "Date" : "Tue, 30 Nov 2021 08:18:29 GMT", + "x-ms-correlation-request-id" : "a2ddf84b-4625-4aec-99f5-67957f25a5a5", + "Date" : "Sun, 06 Mar 2022 06:29:21 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c03c6482-842d-4a6c-80ea-aa6d4824a9a2", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081830Z:6ba6f3c1-2e2c-4ae8-97d8-f7782d861f79", + "client-request-id" : "8bc656a8-65fe-488a-8305-0a84ab9b6a43", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062921Z:a2ddf84b-4625-4aec-99f5-67957f25a5a5", "Expires" : "-1", - "x-ms-request-id" : "ea7dfb4c-a7cd-4dd4-890b-73a60c9c4ac1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c14216ed-7e6f-412e-bf38-c4758285b24f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c1c4b35-c1d4-4553-b770-eaa7d9cdc8f0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b4dea3bb-ec9d-406b-9c1e-b9c25bbc026b" }, "Response" : { "content-length" : "1039", @@ -684,27 +629,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d127fda1-5b10-4844-88ae-ca434eebface", - "Date" : "Tue, 30 Nov 2021 08:19:00 GMT", + "x-ms-correlation-request-id" : "f12082c1-3020-486a-86eb-9c6d53ead3ef", + "Date" : "Sun, 06 Mar 2022 06:29:51 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4c1c4b35-c1d4-4553-b770-eaa7d9cdc8f0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081901Z:d127fda1-5b10-4844-88ae-ca434eebface", + "client-request-id" : "b4dea3bb-ec9d-406b-9c1e-b9c25bbc026b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062952Z:f12082c1-3020-486a-86eb-9c6d53ead3ef", "Expires" : "-1", - "x-ms-request-id" : "dc3c0ec2-ce5d-432e-ae72-c241a82d9dea", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "27757c80-5df3-4eac-84ed-9e4ff2d46671", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "00e69def-673a-4e7f-bd54-93efe372df6a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "94f99c79-aef8-490a-906a-d7f5a41ddf57" }, "Response" : { "content-length" : "1039", @@ -712,27 +657,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", - "x-ms-correlation-request-id" : "795d44ae-9420-4ce0-8c72-f5999487f978", - "Date" : "Tue, 30 Nov 2021 08:19:32 GMT", + "x-ms-correlation-request-id" : "a5a3a4d3-9444-4e10-89ae-ce4d61d37d7c", + "Date" : "Sun, 06 Mar 2022 06:30:21 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "00e69def-673a-4e7f-bd54-93efe372df6a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T081932Z:795d44ae-9420-4ce0-8c72-f5999487f978", + "client-request-id" : "94f99c79-aef8-490a-906a-d7f5a41ddf57", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063022Z:a5a3a4d3-9444-4e10-89ae-ce4d61d37d7c", "Expires" : "-1", - "x-ms-request-id" : "b5d9bbbf-d0cc-4396-b491-4373607b93b5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "b4efefe2-9a8c-4406-b65b-7a0bd609688f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "c07178d9-c854-45be-b09a-57cf868f558b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3f18f65b-e209-4637-8e46-b89fd55f7c69" }, "Response" : { "content-length" : "1039", @@ -740,27 +685,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", - "x-ms-correlation-request-id" : "caa65bed-a1ad-4e2e-a775-0cb9ff92f233", - "Date" : "Tue, 30 Nov 2021 08:20:03 GMT", + "x-ms-correlation-request-id" : "a97b6a91-ef7e-41a5-b933-a6a1e8bad946", + "Date" : "Sun, 06 Mar 2022 06:30:52 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c07178d9-c854-45be-b09a-57cf868f558b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082004Z:caa65bed-a1ad-4e2e-a775-0cb9ff92f233", + "client-request-id" : "3f18f65b-e209-4637-8e46-b89fd55f7c69", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063053Z:a97b6a91-ef7e-41a5-b933-a6a1e8bad946", "Expires" : "-1", - "x-ms-request-id" : "91cc8189-9ec7-4ef7-b35e-03e3a11fa81e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "3604d112-af5c-44d9-b60c-a3e0167d9a2a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "f75c7d58-abe8-43d0-9214-9b6f3be9e9f1" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "597ee8a9-5cb2-492b-98fc-f72a55879e53" }, "Response" : { "content-length" : "1039", @@ -768,27 +713,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8c27e705-32bb-4735-a7da-ea7ec57ae683", - "Date" : "Tue, 30 Nov 2021 08:20:34 GMT", + "x-ms-correlation-request-id" : "fd4aea09-ac21-4cab-a221-7a317498ea00", + "Date" : "Sun, 06 Mar 2022 06:31:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f75c7d58-abe8-43d0-9214-9b6f3be9e9f1", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082035Z:8c27e705-32bb-4735-a7da-ea7ec57ae683", + "client-request-id" : "597ee8a9-5cb2-492b-98fc-f72a55879e53", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063123Z:fd4aea09-ac21-4cab-a221-7a317498ea00", "Expires" : "-1", - "x-ms-request-id" : "25d2378b-11ba-428d-83d5-ba94eb8b8635", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "14de4ca1-6a86-49f1-9bab-7eabf638441f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "eba197b3-925a-4253-8c39-27160652b755" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e35526a8-16f5-4362-9b63-5866fdc5faa4" }, "Response" : { "content-length" : "1039", @@ -796,27 +741,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e07d37d1-3966-4310-be18-cee00b10d868", - "Date" : "Tue, 30 Nov 2021 08:21:06 GMT", + "x-ms-correlation-request-id" : "c3e76b8d-2318-4a94-ac73-258f2c9fe003", + "Date" : "Sun, 06 Mar 2022 06:31:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "eba197b3-925a-4253-8c39-27160652b755", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082107Z:e07d37d1-3966-4310-be18-cee00b10d868", + "client-request-id" : "e35526a8-16f5-4362-9b63-5866fdc5faa4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063153Z:c3e76b8d-2318-4a94-ac73-258f2c9fe003", "Expires" : "-1", - "x-ms-request-id" : "9b330e68-faa4-4720-9d16-f68ecb56d8d7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "3a8c06ff-e7eb-4619-8095-3765e8f2ce80", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "f347b0a8-e074-49c6-b0e8-c8ce2b3a756b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "98962686-3d4f-4919-9e45-ef7afdd38887" }, "Response" : { "content-length" : "1039", @@ -824,27 +769,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ff03af9e-dc5d-447d-8b5c-ae953ed5efab", - "Date" : "Tue, 30 Nov 2021 08:21:38 GMT", + "x-ms-correlation-request-id" : "e24ba7d7-6b3a-49b7-8cc6-fa539c86bbd3", + "Date" : "Sun, 06 Mar 2022 06:32:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f347b0a8-e074-49c6-b0e8-c8ce2b3a756b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082138Z:ff03af9e-dc5d-447d-8b5c-ae953ed5efab", + "client-request-id" : "98962686-3d4f-4919-9e45-ef7afdd38887", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063224Z:e24ba7d7-6b3a-49b7-8cc6-fa539c86bbd3", "Expires" : "-1", - "x-ms-request-id" : "4996a413-aafc-4fb4-a7f7-99f9ef094a6f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "5d396a4e-bd5c-4dbf-93c6-4be09fd57d5d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "876b1082-cde1-430a-92df-06204c036be6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6f2f621d-919c-4c09-8cc2-466e148f82b2" }, "Response" : { "content-length" : "1037", @@ -852,27 +797,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", - "x-ms-correlation-request-id" : "58fa47c8-0623-495d-932f-10d2591a8444", - "Date" : "Tue, 30 Nov 2021 08:22:10 GMT", + "x-ms-correlation-request-id" : "b1ceff0a-c846-42b5-be68-25185360689f", + "Date" : "Sun, 06 Mar 2022 06:32:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "876b1082-cde1-430a-92df-06204c036be6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082210Z:58fa47c8-0623-495d-932f-10d2591a8444", + "client-request-id" : "6f2f621d-919c-4c09-8cc2-466e148f82b2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063254Z:b1ceff0a-c846-42b5-be68-25185360689f", "Expires" : "-1", - "x-ms-request-id" : "c65af681-32bc-44ec-a78a-93e7987a5ff7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "25ecf726-a4c4-471b-a12b-1940723b1ddb", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "e656d888-cac2-4312-86ba-e57c66ce1d64" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5cb44499-b8fe-4ae8-8ad0-ea7880de28e3" }, "Response" : { "content-length" : "1038", @@ -880,27 +825,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", - "x-ms-correlation-request-id" : "111bb664-0f18-4a37-a6cf-563065329602", - "Date" : "Tue, 30 Nov 2021 08:22:40 GMT", + "x-ms-correlation-request-id" : "1ea17ebd-d160-4947-8e90-4520d4e02042", + "Date" : "Sun, 06 Mar 2022 06:33:24 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e656d888-cac2-4312-86ba-e57c66ce1d64", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082241Z:111bb664-0f18-4a37-a6cf-563065329602", + "client-request-id" : "5cb44499-b8fe-4ae8-8ad0-ea7880de28e3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063325Z:1ea17ebd-d160-4947-8e90-4520d4e02042", "Expires" : "-1", - "x-ms-request-id" : "06cb481e-22fc-448a-b6b3-70a3242e929a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"200\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "be331ed5-5c93-427a-99b1-e08cf58f961c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"rdb-backup-enabled\":\"true\",\"rdb-backup-frequency\":\"15\",\"rdb-backup-max-snapshot-count\":\"1\",\"maxmemory-delta\":\"642\",\"rdb-storage-connection-string\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "b97b5765-1ac6-4a0e-afab-d30f07faae75", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c1ea57bc-1ab6-4baa-bf4a-ea69c408f50b", "Content-Type" : "application/json" }, "Response" : { @@ -911,24 +856,24 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "202", - "x-ms-correlation-request-id" : "50a388bb-bc6d-46c4-a40f-93556b5fbcf4", - "Date" : "Tue, 30 Nov 2021 08:22:42 GMT", + "x-ms-correlation-request-id" : "48c1ad26-fc42-4992-a6c7-25ce7b87e558", + "Date" : "Sun, 06 Mar 2022 06:33:26 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "b97b5765-1ac6-4a0e-afab-d30f07faae75", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082242Z:50a388bb-bc6d-46c4-a40f-93556b5fbcf4", + "client-request-id" : "c1ea57bc-1ab6-4baa-bf4a-ea69c408f50b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063326Z:48c1ad26-fc42-4992-a6c7-25ce7b87e558", "Expires" : "-1", - "x-ms-request-id" : "5bb4df78-552f-48e3-96cd-63faf260a056", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01" + "x-ms-request-id" : "bd32b70a-66ea-45bf-9170-910fb92e0183", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce8bf589-6ab1-41d2-beb7-e7140572f5df" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "97784613-8c4d-496f-b9ea-13a62d232a61" }, "Response" : { "content-length" : "0", @@ -936,26 +881,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "202", - "x-ms-correlation-request-id" : "ff2064d5-2ae2-4d10-9ce5-177cf11365a7", - "Date" : "Tue, 30 Nov 2021 08:23:12 GMT", + "x-ms-correlation-request-id" : "6cd90ac6-8aef-41cd-ae33-a1b0a8714bac", + "Date" : "Sun, 06 Mar 2022 06:33:55 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ce8bf589-6ab1-41d2-beb7-e7140572f5df", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082313Z:ff2064d5-2ae2-4d10-9ce5-177cf11365a7", + "client-request-id" : "97784613-8c4d-496f-b9ea-13a62d232a61", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063356Z:6cd90ac6-8aef-41cd-ae33-a1b0a8714bac", "Expires" : "-1", - "x-ms-request-id" : "eca40277-6d1b-4ad4-ad1e-eb29c5250f4d", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01" + "x-ms-request-id" : "a7dc91d6-f73b-49ac-9c44-0e60d808f8bf", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0c3bf1e-b9a4-4b9d-85ec-13d0b0095f62" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ed338600-37ef-4951-aa16-d9659bcd986a" }, "Response" : { "content-length" : "0", @@ -963,26 +908,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "202", - "x-ms-correlation-request-id" : "a702babe-84f1-4c03-b0f6-86ed3d252e47", - "Date" : "Tue, 30 Nov 2021 08:23:43 GMT", + "x-ms-correlation-request-id" : "284e029c-b732-41f9-9af9-0f2ce3432741", + "Date" : "Sun, 06 Mar 2022 06:34:27 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e0c3bf1e-b9a4-4b9d-85ec-13d0b0095f62", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082343Z:a702babe-84f1-4c03-b0f6-86ed3d252e47", + "client-request-id" : "ed338600-37ef-4951-aa16-d9659bcd986a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063427Z:284e029c-b732-41f9-9af9-0f2ce3432741", "Expires" : "-1", - "x-ms-request-id" : "358953e2-baca-429a-89c5-1d3cb20a843c", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01" + "x-ms-request-id" : "4b491144-39dd-4890-9613-77d772e5880d", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9f9ec15-a62b-4708-b9c4-85b2c50e1cd4" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9241613c-53f8-436c-9f37-4230c0e38192" }, "Response" : { "content-length" : "0", @@ -990,26 +935,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "202", - "x-ms-correlation-request-id" : "25c1b3ab-0f4e-488b-b25f-2abd5d663c26", - "Date" : "Tue, 30 Nov 2021 08:24:14 GMT", + "x-ms-correlation-request-id" : "4998d736-c7fe-4aff-838d-afe1c8479147", + "Date" : "Sun, 06 Mar 2022 06:34:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e9f9ec15-a62b-4708-b9c4-85b2c50e1cd4", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082414Z:25c1b3ab-0f4e-488b-b25f-2abd5d663c26", + "client-request-id" : "9241613c-53f8-436c-9f37-4230c0e38192", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063458Z:4998d736-c7fe-4aff-838d-afe1c8479147", "Expires" : "-1", - "x-ms-request-id" : "18f188cb-1788-4ab9-9491-4503e628f76d", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01" + "x-ms-request-id" : "9df00af8-d901-4ab3-be02-33aef38fae21", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "16eeebb6-6d00-4a0b-aa58-e4ad86378917" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "cc00d28d-f422-4039-b45d-b6c4efe1da72" }, "Response" : { "content-length" : "0", @@ -1017,26 +962,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "202", - "x-ms-correlation-request-id" : "2a6b4d85-02d4-41a2-9047-9c4d3a57033d", - "Date" : "Tue, 30 Nov 2021 08:24:45 GMT", + "x-ms-correlation-request-id" : "8d7c8b76-921b-4394-bd42-b5f6e28ce811", + "Date" : "Sun, 06 Mar 2022 06:35:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "16eeebb6-6d00-4a0b-aa58-e4ad86378917", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082445Z:2a6b4d85-02d4-41a2-9047-9c4d3a57033d", + "client-request-id" : "cc00d28d-f422-4039-b45d-b6c4efe1da72", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063529Z:8d7c8b76-921b-4394-bd42-b5f6e28ce811", "Expires" : "-1", - "x-ms-request-id" : "6a1425a4-7f78-4e1c-a08b-def05c10e582", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01" + "x-ms-request-id" : "bcf28a75-1dd1-43a6-b5dd-b90811075196", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "469d66ce-4711-416d-a253-77c35fdf3fae" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3b48d0e8-9146-49c7-9be1-feca84b36817" }, "Response" : { "content-length" : "0", @@ -1044,26 +989,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "202", - "x-ms-correlation-request-id" : "65c9d8b3-545b-461c-8ae2-7c3e320298ec", - "Date" : "Tue, 30 Nov 2021 08:25:15 GMT", + "x-ms-correlation-request-id" : "64a26ed0-37cc-4ed9-b8a8-ce513faf4ab6", + "Date" : "Sun, 06 Mar 2022 06:35:59 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "469d66ce-4711-416d-a253-77c35fdf3fae", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082516Z:65c9d8b3-545b-461c-8ae2-7c3e320298ec", + "client-request-id" : "3b48d0e8-9146-49c7-9be1-feca84b36817", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063600Z:64a26ed0-37cc-4ed9-b8a8-ce513faf4ab6", "Expires" : "-1", - "x-ms-request-id" : "e0ad6dc8-d2ed-45f9-ab2e-0fab31bb1c68", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01" + "x-ms-request-id" : "6b400ee1-fb9b-4719-b08e-86a44bc09963", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f333f88-f763-4715-ba54-e9aa460b7220" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "71f982c7-bff9-42dc-99b6-12035c5d18aa" }, "Response" : { "content-length" : "0", @@ -1071,26 +1016,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "202", - "x-ms-correlation-request-id" : "94175a1d-226c-41f9-adaa-299c7eba9980", - "Date" : "Tue, 30 Nov 2021 08:25:46 GMT", + "x-ms-correlation-request-id" : "a18b6886-9193-437f-9898-81f218f19240", + "Date" : "Sun, 06 Mar 2022 06:36:30 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8f333f88-f763-4715-ba54-e9aa460b7220", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082547Z:94175a1d-226c-41f9-adaa-299c7eba9980", + "client-request-id" : "71f982c7-bff9-42dc-99b6-12035c5d18aa", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063631Z:a18b6886-9193-437f-9898-81f218f19240", "Expires" : "-1", - "x-ms-request-id" : "5d07e6aa-2e74-47d6-8dc2-9236479c857a", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01" + "x-ms-request-id" : "2299015d-1a61-44b7-afcb-75f7f24cbb80", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0e3f5c7-bd2e-4ee7-9d38-43ad8b86b406" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3b48b1f6-65f3-431d-ade6-f276a36190e9" }, "Response" : { "content-length" : "0", @@ -1098,26 +1043,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "202", - "x-ms-correlation-request-id" : "14d06e99-f1af-4b44-a4fd-116715476bdd", - "Date" : "Tue, 30 Nov 2021 08:26:18 GMT", + "x-ms-correlation-request-id" : "5b899e2a-c66e-4418-b9fc-4e13f830b4ec", + "Date" : "Sun, 06 Mar 2022 06:37:01 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f0e3f5c7-bd2e-4ee7-9d38-43ad8b86b406", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082618Z:14d06e99-f1af-4b44-a4fd-116715476bdd", + "client-request-id" : "3b48b1f6-65f3-431d-ade6-f276a36190e9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063702Z:5b899e2a-c66e-4418-b9fc-4e13f830b4ec", "Expires" : "-1", - "x-ms-request-id" : "70669965-bb60-4056-84fe-c61feec0d4cf", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01" + "x-ms-request-id" : "585ec3ea-1664-44ce-a510-916b13057c14", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "ada538b5-d94b-4c99-b219-b7ec9829d8f3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9bcdd348-f10b-4db4-83de-257f855af19a" }, "Response" : { "content-length" : "0", @@ -1125,26 +1070,26 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "202", - "x-ms-correlation-request-id" : "490dbe84-d080-4e81-8796-c268cbd9aea0", - "Date" : "Tue, 30 Nov 2021 08:26:48 GMT", + "x-ms-correlation-request-id" : "0bbc5c23-fdac-457b-b25d-3a01baa5c1a0", + "Date" : "Sun, 06 Mar 2022 06:37:32 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ada538b5-d94b-4c99-b219-b7ec9829d8f3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082649Z:490dbe84-d080-4e81-8796-c268cbd9aea0", + "client-request-id" : "9bcdd348-f10b-4db4-83de-257f855af19a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063733Z:0bbc5c23-fdac-457b-b25d-3a01baa5c1a0", "Expires" : "-1", - "x-ms-request-id" : "d9204bad-6d15-4c27-9004-c83962edd782", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01" + "x-ms-request-id" : "91b537a9-82fb-439f-8b8d-ab6a541d4f78", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/5bb4df78-552f-48e3-96cd-63faf260a056?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "cfa2abfa-7036-453e-bb02-a307720f9d7b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c08e8217-a034-45c4-8786-0072a1f206f1" }, "Response" : { "content-length" : "0", @@ -1152,139 +1097,110 @@ "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" : "7d36123b-da79-44b9-943c-055cec00a363", - "Date" : "Tue, 30 Nov 2021 08:27:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", - "Cache-Control" : "no-cache", - "client-request-id" : "cfa2abfa-7036-453e-bb02-a307720f9d7b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082720Z:7d36123b-da79-44b9-943c-055cec00a363", - "Expires" : "-1", - "x-ms-request-id" : "7f803025-1a3a-427b-b3d8-c2ab967a1eec" - }, - "Exception" : null - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf0c4a7b-a488-4e4d-802a-59eeaa44abea", - "Content-Type" : "application/json" - }, - "Response" : { - "content-length" : "1398", - "Server" : "Microsoft-HTTPAPI/2.0", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "Pragma" : "no-cache", - "retry-after" : "0", - "StatusCode" : "201", - "x-ms-correlation-request-id" : "f7d55373-c10b-4797-a66b-c2fd65730d44", - "Date" : "Tue, 30 Nov 2021 08:27:23 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", + "StatusCode" : "202", + "x-ms-correlation-request-id" : "60ec33ff-b4e1-4dc0-b68a-64135e519ef9", + "Date" : "Sun, 06 Mar 2022 06:38:02 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "bf0c4a7b-a488-4e4d-802a-59eeaa44abea", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082724Z:f7d55373-c10b-4797-a66b-c2fd65730d44", + "client-request-id" : "c08e8217-a034-45c4-8786-0072a1f206f1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063803Z:60ec33ff-b4e1-4dc0-b68a-64135e519ef9", "Expires" : "-1", - "x-ms-request-id" : "7c2ed55d-f5dc-4178-91d5-1377742eae7d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;AccountName=javacsmsa14331;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;AccountName=javacsmsa14331;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"},\"accessKeys\":{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"},\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01" + "x-ms-request-id" : "7102d074-43b3-4ef2-9cac-816ef31b9b2a", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "293683f1-2153-4259-bec9-4822e13b2dd7" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "14eb3494-df35-4d63-b027-a1046496a8b2" }, "Response" : { - "content-length" : "1127", + "content-length" : "0", "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", - "x-ms-correlation-request-id" : "7db959ba-67a0-455f-93c5-1f6c5468ee94", - "Date" : "Tue, 30 Nov 2021 08:27:53 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "StatusCode" : "202", + "x-ms-correlation-request-id" : "bb701c45-07c1-4616-9a03-c18c0562d25c", + "Date" : "Sun, 06 Mar 2022 06:38:34 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "293683f1-2153-4259-bec9-4822e13b2dd7", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082754Z:7db959ba-67a0-455f-93c5-1f6c5468ee94", + "client-request-id" : "14eb3494-df35-4d63-b027-a1046496a8b2", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063834Z:bb701c45-07c1-4616-9a03-c18c0562d25c", "Expires" : "-1", - "x-ms-request-id" : "637b56a5-15db-444e-9eaa-6cd536cde376", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8" + "x-ms-request-id" : "6feb9ce0-2a28-4aac-b33b-23a3d3ca896b", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West%20US%203/operationresults/bd32b70a-66ea-45bf-9170-910fb92e0183?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "cfcaccfe-600f-4077-932e-0ea6de21b502" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "eed14801-dfd1-459b-9cf8-77014a9e85e9" }, "Response" : { - "content-length" : "1127", + "content-length" : "0", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8c990c13-348f-47b0-b4a0-efd445f7e9c1", - "Date" : "Tue, 30 Nov 2021 08:28:25 GMT", + "x-ms-correlation-request-id" : "f59edb1e-5240-4fb9-a0d6-6d14e4bca41e", + "Date" : "Sun, 06 Mar 2022 06:39:05 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cfcaccfe-600f-4077-932e-0ea6de21b502", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082825Z:8c990c13-348f-47b0-b4a0-efd445f7e9c1", + "client-request-id" : "eed14801-dfd1-459b-9cf8-77014a9e85e9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063905Z:f59edb1e-5240-4fb9-a0d6-6d14e4bca41e", "Expires" : "-1", - "x-ms-request-id" : "ce07ab02-8e1b-43c8-b062-2dbdaf4d65be", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8" + "x-ms-request-id" : "a8d9d41c-0dc1-4b02-b5e6-0fbf40c1ae3c" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ed39767-b04c-44d9-8d90-6b56c1ed1e41" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2e516d63-b7bc-4cae-80e8-045a29da20ec", + "Content-Type" : "application/json" }, "Response" : { - "content-length" : "1127", + "content-length" : "1755", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "dbd03ac9-ce7a-4d64-adad-90ae02c7adc7", - "Date" : "Tue, 30 Nov 2021 08:28:56 GMT", + "StatusCode" : "201", + "x-ms-correlation-request-id" : "9d8c0aa0-200a-40f2-af61-a853d73e2c69", + "Date" : "Sun, 06 Mar 2022 06:39:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "7ed39767-b04c-44d9-8d90-6b56c1ed1e41", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082856Z:dbd03ac9-ce7a-4d64-adad-90ae02c7adc7", + "client-request-id" : "2e516d63-b7bc-4cae-80e8-045a29da20ec", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063909Z:9d8c0aa0-200a-40f2-af61-a853d73e2c69", "Expires" : "-1", - "x-ms-request-id" : "4540e81f-5b82-4267-a67b-d84b1b85bcbb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8" + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/West US 3/asyncOperations/f8eee63a-f338-4f5d-a016-73bf4bcaf860?api-version=2021-06-01", + "x-ms-request-id" : "f8eee63a-f338-4f5d-a016-73bf4bcaf860", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\r\n \"location\": \"West US 3\",\r\n \"name\": \"javacsmrc03795\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.1.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"minimumTlsVersion\": \"1.2\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"aof-backup-enabled\": \"true\",\r\n \"maxmemory-delta\": \"642\",\r\n \"aof-storage-connection-string-0\": \"DefaultEndpointsProtocol=https;AccountName=javacsmsa16520;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\",\r\n \"aof-storage-connection-string-1\": \"DefaultEndpointsProtocol=https;AccountName=javacsmsa16520;AccountKey=***REMOVED***;EndpointSuffix=core.windows.net\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"***REMOVED***\",\r\n \"secondaryKey\": \"***REMOVED***\"\r\n },\r\n \"hostName\": \"javacsmrc03795.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "c2742448-6953-464c-b83c-4297c7ac7360" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f124e279-e56e-451f-991d-17334bda69d9" }, "Response" : { "content-length" : "1127", @@ -1292,27 +1208,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ebc4192e-a2e7-4491-a6ac-1e98dcdfb14b", - "Date" : "Tue, 30 Nov 2021 08:29:26 GMT", + "x-ms-correlation-request-id" : "b8523ed6-ca2f-4737-8ccb-18872feec40c", + "Date" : "Sun, 06 Mar 2022 06:39:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c2742448-6953-464c-b83c-4297c7ac7360", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082927Z:ebc4192e-a2e7-4491-a6ac-1e98dcdfb14b", + "client-request-id" : "f124e279-e56e-451f-991d-17334bda69d9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063940Z:b8523ed6-ca2f-4737-8ccb-18872feec40c", "Expires" : "-1", - "x-ms-request-id" : "d3602288-7a73-441a-98de-bdbae904e288", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "dc3ecfea-e010-44ac-b342-550213e78cdf", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "25e5cbfd-994a-4d94-98fe-e0335b093081" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e19668bd-54e7-40de-b3c4-ff0fc2ca2c05" }, "Response" : { "content-length" : "1127", @@ -1320,27 +1236,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2ab72eb7-121f-4a71-afc2-671ba22e9960", - "Date" : "Tue, 30 Nov 2021 08:29:57 GMT", + "x-ms-correlation-request-id" : "2fadacf7-1191-4d5b-9fd5-53d15b72809e", + "Date" : "Sun, 06 Mar 2022 06:40:10 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "25e5cbfd-994a-4d94-98fe-e0335b093081", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T082957Z:2ab72eb7-121f-4a71-afc2-671ba22e9960", + "client-request-id" : "e19668bd-54e7-40de-b3c4-ff0fc2ca2c05", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064011Z:2fadacf7-1191-4d5b-9fd5-53d15b72809e", "Expires" : "-1", - "x-ms-request-id" : "60682fcb-8be1-47a3-8307-01e74be8079d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "cd53a772-a2aa-44e7-9b46-04d1e773bc47", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "442316f1-f4e9-4862-a4a1-d6727086ab4d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f709956b-3a06-4a95-99fa-d52e3fb755e0" }, "Response" : { "content-length" : "1127", @@ -1348,27 +1264,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0e0962c2-1382-4bcb-978a-2f42d33917b7", - "Date" : "Tue, 30 Nov 2021 08:30:28 GMT", + "x-ms-correlation-request-id" : "dbb8a06a-d2ef-4027-87f1-758b071f8279", + "Date" : "Sun, 06 Mar 2022 06:40:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "442316f1-f4e9-4862-a4a1-d6727086ab4d", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083028Z:0e0962c2-1382-4bcb-978a-2f42d33917b7", + "client-request-id" : "f709956b-3a06-4a95-99fa-d52e3fb755e0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064042Z:dbb8a06a-d2ef-4027-87f1-758b071f8279", "Expires" : "-1", - "x-ms-request-id" : "ef681f68-ed26-44bb-9662-5c4723950c98", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "587cee05-cb4c-4361-b008-68cef94dc413", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "038360f3-7fc5-4fd1-96a9-f9a80ead5c51" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "348f0194-51ac-421e-ae78-32996fcbf1d4" }, "Response" : { "content-length" : "1127", @@ -1376,27 +1292,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c5769634-b24f-485e-93bc-e04da48fecd5", - "Date" : "Tue, 30 Nov 2021 08:30:59 GMT", + "x-ms-correlation-request-id" : "03aea358-7360-4d44-b04d-79e1f3ac952e", + "Date" : "Sun, 06 Mar 2022 06:41:12 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "038360f3-7fc5-4fd1-96a9-f9a80ead5c51", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083059Z:c5769634-b24f-485e-93bc-e04da48fecd5", + "client-request-id" : "348f0194-51ac-421e-ae78-32996fcbf1d4", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064113Z:03aea358-7360-4d44-b04d-79e1f3ac952e", "Expires" : "-1", - "x-ms-request-id" : "f92f42ed-0f8a-4f79-a3eb-1e6f4b416bb9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "84eb0d04-8a75-492c-9bc6-5ab922ce5eb8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "c2fd6ee5-b84d-4b58-b888-3703077f743f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4247e4e5-0228-42f5-908b-be7068a057c8" }, "Response" : { "content-length" : "1127", @@ -1404,27 +1320,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "200", - "x-ms-correlation-request-id" : "d87f4a92-643e-4eb8-9dda-3c356aed75bd", - "Date" : "Tue, 30 Nov 2021 08:31:30 GMT", + "x-ms-correlation-request-id" : "c8287b02-4d93-466c-bba8-6b0d232b9596", + "Date" : "Sun, 06 Mar 2022 06:41:43 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c2fd6ee5-b84d-4b58-b888-3703077f743f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083130Z:d87f4a92-643e-4eb8-9dda-3c356aed75bd", + "client-request-id" : "4247e4e5-0228-42f5-908b-be7068a057c8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064144Z:c8287b02-4d93-466c-bba8-6b0d232b9596", "Expires" : "-1", - "x-ms-request-id" : "e36bb622-2984-4f39-93ae-5b42550b87f4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "6d727c91-f959-476c-8a9d-629f7f54a284", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "cdec5be2-b999-446e-8598-8263251922db" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "52078a96-1e36-4d4a-a256-ea477c797a10" }, "Response" : { "content-length" : "1127", @@ -1432,27 +1348,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "200", - "x-ms-correlation-request-id" : "3d6135d7-1482-4ae0-a05d-e10331279bf4", - "Date" : "Tue, 30 Nov 2021 08:32:00 GMT", + "x-ms-correlation-request-id" : "2d96f942-07e5-44a5-8738-b20dc4c00ff6", + "Date" : "Sun, 06 Mar 2022 06:42:13 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cdec5be2-b999-446e-8598-8263251922db", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083201Z:3d6135d7-1482-4ae0-a05d-e10331279bf4", + "client-request-id" : "52078a96-1e36-4d4a-a256-ea477c797a10", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064214Z:2d96f942-07e5-44a5-8738-b20dc4c00ff6", "Expires" : "-1", - "x-ms-request-id" : "5844bba1-1bbb-49f5-9818-8fbdc6ed072b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c812e9c0-0f3e-403b-9d55-4661bce758b7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "b29b0c36-11bd-421c-ad7c-b12012b50e7b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "486bbfb7-e318-4049-8f17-eabfc1c64364" }, "Response" : { "content-length" : "1127", @@ -1460,27 +1376,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "200", - "x-ms-correlation-request-id" : "fea57043-378f-4909-8339-1778d49ef342", - "Date" : "Tue, 30 Nov 2021 08:32:31 GMT", + "x-ms-correlation-request-id" : "8cbbba3f-a00d-44c4-991f-75ca6d0b747d", + "Date" : "Sun, 06 Mar 2022 06:42:44 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "b29b0c36-11bd-421c-ad7c-b12012b50e7b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083232Z:fea57043-378f-4909-8339-1778d49ef342", + "client-request-id" : "486bbfb7-e318-4049-8f17-eabfc1c64364", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064245Z:8cbbba3f-a00d-44c4-991f-75ca6d0b747d", "Expires" : "-1", - "x-ms-request-id" : "f9e74838-35d8-4975-822e-76a83ad58fe3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "53a9d979-c616-4cd6-8bd3-ec98dbb29de5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8a45c04-a174-4449-8c85-31947f259944" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "36063fb5-71e4-41ba-8793-11293d865037" }, "Response" : { "content-length" : "1127", @@ -1488,27 +1404,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "200", - "x-ms-correlation-request-id" : "098a7c9d-f3c6-4075-a6fb-e4ec97bca7a0", - "Date" : "Tue, 30 Nov 2021 08:33:03 GMT", + "x-ms-correlation-request-id" : "0ef6336c-8081-4468-9460-2bd6b44466c2", + "Date" : "Sun, 06 Mar 2022 06:43:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e8a45c04-a174-4449-8c85-31947f259944", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083303Z:098a7c9d-f3c6-4075-a6fb-e4ec97bca7a0", + "client-request-id" : "36063fb5-71e4-41ba-8793-11293d865037", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064316Z:0ef6336c-8081-4468-9460-2bd6b44466c2", "Expires" : "-1", - "x-ms-request-id" : "fa5103f6-1189-40bf-90d0-4d7296debd0d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "2e9072e7-e8b5-4a82-bc3e-4054b7e46e00", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "fcc2a0e5-d6a3-42b9-a3d6-6212551ce0b3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7be1ae9f-70fc-4157-9c9a-82114eaef9e3" }, "Response" : { "content-length" : "1127", @@ -1516,27 +1432,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "200", - "x-ms-correlation-request-id" : "17728a1a-03af-4438-bfd1-e16b6e983ab0", - "Date" : "Tue, 30 Nov 2021 08:33:33 GMT", + "x-ms-correlation-request-id" : "39c0f413-7d67-45b3-8d3b-5974750d1ba2", + "Date" : "Sun, 06 Mar 2022 06:43:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "fcc2a0e5-d6a3-42b9-a3d6-6212551ce0b3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083334Z:17728a1a-03af-4438-bfd1-e16b6e983ab0", + "client-request-id" : "7be1ae9f-70fc-4157-9c9a-82114eaef9e3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064347Z:39c0f413-7d67-45b3-8d3b-5974750d1ba2", "Expires" : "-1", - "x-ms-request-id" : "9848d96b-d88c-4567-beda-19d47e17909a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "d1b93b44-57fa-4b85-b43d-283008076872", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "682fa277-3eb6-4d08-9ed1-f85a726f6ef6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d9cb4414-56c5-41fb-9403-81835cda02d3" }, "Response" : { "content-length" : "1127", @@ -1544,27 +1460,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e53b2ba5-8606-4a2c-b9ba-d12622f8ca90", - "Date" : "Tue, 30 Nov 2021 08:34:04 GMT", + "x-ms-correlation-request-id" : "6f76aac9-a22a-4e75-a7cc-d00b9e8a968d", + "Date" : "Sun, 06 Mar 2022 06:44:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "682fa277-3eb6-4d08-9ed1-f85a726f6ef6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083404Z:e53b2ba5-8606-4a2c-b9ba-d12622f8ca90", + "client-request-id" : "d9cb4414-56c5-41fb-9403-81835cda02d3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064418Z:6f76aac9-a22a-4e75-a7cc-d00b9e8a968d", "Expires" : "-1", - "x-ms-request-id" : "dfdc0cf7-4a51-4e68-9e78-f2fc78984ea6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "57d0729e-bfc8-4335-bb6c-d1f3bedba906", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "72470263-6102-4d0f-8c38-ff27d3877f65" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "28272cbf-ce6a-4330-8ecf-5e5290339461" }, "Response" : { "content-length" : "1127", @@ -1572,27 +1488,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ca4f5869-06e4-4d67-806f-b33360f88683", - "Date" : "Tue, 30 Nov 2021 08:34:35 GMT", + "x-ms-correlation-request-id" : "a6e8eb23-95fb-4db3-9f29-976af01a0f4c", + "Date" : "Sun, 06 Mar 2022 06:44:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "72470263-6102-4d0f-8c38-ff27d3877f65", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083435Z:ca4f5869-06e4-4d67-806f-b33360f88683", + "client-request-id" : "28272cbf-ce6a-4330-8ecf-5e5290339461", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064449Z:a6e8eb23-95fb-4db3-9f29-976af01a0f4c", "Expires" : "-1", - "x-ms-request-id" : "e2b1b601-426b-4eca-ba0a-f20bace7b438", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "7c6dc9a5-a098-4ba8-9510-a958a93fa701", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "e057ec23-6593-4602-8a42-11739ca8e964" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "36009730-0abb-4e6e-ac73-01d8aa8c0f90" }, "Response" : { "content-length" : "1127", @@ -1600,27 +1516,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "x-ms-ratelimit-remaining-subscription-reads" : "11954", "StatusCode" : "200", - "x-ms-correlation-request-id" : "89631150-e3a1-4a7d-b273-d99d2c30f882", - "Date" : "Tue, 30 Nov 2021 08:35:07 GMT", + "x-ms-correlation-request-id" : "ca6d413f-1ee9-4e22-babc-4df648bd7fac", + "Date" : "Sun, 06 Mar 2022 06:45:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e057ec23-6593-4602-8a42-11739ca8e964", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083507Z:89631150-e3a1-4a7d-b273-d99d2c30f882", + "client-request-id" : "36009730-0abb-4e6e-ac73-01d8aa8c0f90", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064520Z:ca6d413f-1ee9-4e22-babc-4df648bd7fac", "Expires" : "-1", - "x-ms-request-id" : "d56b5102-3f01-4085-bafe-faf76c98484c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "1bb891eb-2cc2-4c96-a069-9e07b0c54d7a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "9dea41cf-0809-4e2f-9e78-d6e722fa1237" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7d6229ed-02df-4f10-b333-db6c936387ed" }, "Response" : { "content-length" : "1127", @@ -1628,27 +1544,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", - "x-ms-correlation-request-id" : "9d7ddda1-7620-4677-acbf-91699e574857", - "Date" : "Tue, 30 Nov 2021 08:35:38 GMT", + "x-ms-correlation-request-id" : "2a837943-d798-43b7-8bab-c367e88745b7", + "Date" : "Sun, 06 Mar 2022 06:45:52 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "9dea41cf-0809-4e2f-9e78-d6e722fa1237", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083539Z:9d7ddda1-7620-4677-acbf-91699e574857", + "client-request-id" : "7d6229ed-02df-4f10-b333-db6c936387ed", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064552Z:2a837943-d798-43b7-8bab-c367e88745b7", "Expires" : "-1", - "x-ms-request-id" : "f74911cb-f110-4983-b22d-de9fca295bb0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "564e5dd1-1362-44f2-8b03-e47657cb8931", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7abc54b-1d2b-43a5-beaa-5e461211951f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6589be69-98a4-42b4-bd76-93b3b190a495" }, "Response" : { "content-length" : "1127", @@ -1656,27 +1572,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", + "x-ms-ratelimit-remaining-subscription-reads" : "11954", "StatusCode" : "200", - "x-ms-correlation-request-id" : "b8d9f118-8968-49cc-9430-af00a60c7155", - "Date" : "Tue, 30 Nov 2021 08:36:09 GMT", + "x-ms-correlation-request-id" : "794e6d18-af83-460d-b82d-b4941a6c1b67", + "Date" : "Sun, 06 Mar 2022 06:46:22 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c7abc54b-1d2b-43a5-beaa-5e461211951f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083610Z:b8d9f118-8968-49cc-9430-af00a60c7155", + "client-request-id" : "6589be69-98a4-42b4-bd76-93b3b190a495", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064623Z:794e6d18-af83-460d-b82d-b4941a6c1b67", "Expires" : "-1", - "x-ms-request-id" : "e0a0cf45-08bd-41cb-a493-4a313ecef648", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "e36db5c2-247c-4c9d-843e-b3a195ca59f8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "300f9c30-66ff-402c-8ac8-8e2e23e71224" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "608a4438-6e9c-474d-a623-3c07a2ced8ee" }, "Response" : { "content-length" : "1127", @@ -1684,27 +1600,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bed8ee27-83d0-4ad2-8270-c5915cd31ebe", - "Date" : "Tue, 30 Nov 2021 08:36:41 GMT", + "x-ms-correlation-request-id" : "abe0df37-bc7e-4c12-8029-16c60b8f95aa", + "Date" : "Sun, 06 Mar 2022 06:46:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "300f9c30-66ff-402c-8ac8-8e2e23e71224", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083642Z:bed8ee27-83d0-4ad2-8270-c5915cd31ebe", + "client-request-id" : "608a4438-6e9c-474d-a623-3c07a2ced8ee", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064655Z:abe0df37-bc7e-4c12-8029-16c60b8f95aa", "Expires" : "-1", - "x-ms-request-id" : "4d914e1f-9b2c-41c5-ad01-e2dea7c5706e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "9218f5fb-72bf-4d8e-b2a5-ba5afe2a53aa", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbf5773f-ae33-4af4-b40f-51796ddd3a6f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8be2aaed-8a6e-4b0c-8ee1-2783a38b72f7" }, "Response" : { "content-length" : "1127", @@ -1712,27 +1628,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11953", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c4e8d10a-075e-4753-bc2c-b596af0fff0b", - "Date" : "Tue, 30 Nov 2021 08:37:13 GMT", + "x-ms-correlation-request-id" : "e4e35f7a-7c59-4d9f-8720-f91c869e4de0", + "Date" : "Sun, 06 Mar 2022 06:47:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cbf5773f-ae33-4af4-b40f-51796ddd3a6f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083713Z:c4e8d10a-075e-4753-bc2c-b596af0fff0b", + "client-request-id" : "8be2aaed-8a6e-4b0c-8ee1-2783a38b72f7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064726Z:e4e35f7a-7c59-4d9f-8720-f91c869e4de0", "Expires" : "-1", - "x-ms-request-id" : "148cd8be-0620-4dd4-99c0-f18d99c170af", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "ddc7f227-b1c0-47c1-be03-81770f247a84", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e34c170-0efb-40e8-829a-087af6213c7d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "92a291be-149e-44d0-bd65-82e11d90a2bd" }, "Response" : { "content-length" : "1127", @@ -1740,27 +1656,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", + "x-ms-ratelimit-remaining-subscription-reads" : "11954", "StatusCode" : "200", - "x-ms-correlation-request-id" : "318ef6bf-3d15-412b-a018-d2d17660ee65", - "Date" : "Tue, 30 Nov 2021 08:37:44 GMT", + "x-ms-correlation-request-id" : "d9256dc4-41b3-466b-ac32-4469f089b0d6", + "Date" : "Sun, 06 Mar 2022 06:47:56 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8e34c170-0efb-40e8-829a-087af6213c7d", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083745Z:318ef6bf-3d15-412b-a018-d2d17660ee65", + "client-request-id" : "92a291be-149e-44d0-bd65-82e11d90a2bd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064757Z:d9256dc4-41b3-466b-ac32-4469f089b0d6", "Expires" : "-1", - "x-ms-request-id" : "b5577149-089c-4a25-9ad4-d48fea2d7ce3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "59259b2f-2db8-43f2-aae0-26e68bf2add3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "344444c4-1e0b-4c54-86d2-812b6b57740a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8e068654-c36a-4ced-9ba8-e6a4f097f309" }, "Response" : { "content-length" : "1127", @@ -1768,27 +1684,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "x-ms-ratelimit-remaining-subscription-reads" : "11952", "StatusCode" : "200", - "x-ms-correlation-request-id" : "8d6f68d9-f403-4789-8c6f-e37344041249", - "Date" : "Tue, 30 Nov 2021 08:38:16 GMT", + "x-ms-correlation-request-id" : "5a694ffa-b263-46be-a4e5-67c6f4bd35ad", + "Date" : "Sun, 06 Mar 2022 06:48:27 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "344444c4-1e0b-4c54-86d2-812b6b57740a", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083816Z:8d6f68d9-f403-4789-8c6f-e37344041249", + "client-request-id" : "8e068654-c36a-4ced-9ba8-e6a4f097f309", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064828Z:5a694ffa-b263-46be-a4e5-67c6f4bd35ad", "Expires" : "-1", - "x-ms-request-id" : "dad7dc77-2653-4500-8419-0920f6cc4f70", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "9b1734fd-475f-462b-99db-d9daf0ea7b31", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c4eb661-7c35-4876-aa08-4c06fc3db1dd" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5c458663-0656-4a35-a361-c7949fb1c817" }, "Response" : { "content-length" : "1127", @@ -1796,27 +1712,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11953", "StatusCode" : "200", - "x-ms-correlation-request-id" : "553c7625-f256-4bfc-8fe4-57eb4cf98e77", - "Date" : "Tue, 30 Nov 2021 08:38:47 GMT", + "x-ms-correlation-request-id" : "5b4841e4-bfb0-46c3-b99d-7f316f8bdf5e", + "Date" : "Sun, 06 Mar 2022 06:48:58 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "7c4eb661-7c35-4876-aa08-4c06fc3db1dd", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083847Z:553c7625-f256-4bfc-8fe4-57eb4cf98e77", + "client-request-id" : "5c458663-0656-4a35-a361-c7949fb1c817", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064859Z:5b4841e4-bfb0-46c3-b99d-7f316f8bdf5e", "Expires" : "-1", - "x-ms-request-id" : "60f05032-5574-4b0a-b6d2-a521f55f3845", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "509e5931-ec42-43e0-93c3-41b75f80c7e1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e8645a6-fe51-41df-92f4-9d83681f785b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4b5c5131-f25d-4cd4-b350-0481f9bfa981" }, "Response" : { "content-length" : "1127", @@ -1824,27 +1740,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", + "x-ms-ratelimit-remaining-subscription-reads" : "11951", "StatusCode" : "200", - "x-ms-correlation-request-id" : "217891e0-5350-40b5-89d9-1273cbb9f4ff", - "Date" : "Tue, 30 Nov 2021 08:39:18 GMT", + "x-ms-correlation-request-id" : "adecb504-3aed-4704-86d1-c71c06e208b9", + "Date" : "Sun, 06 Mar 2022 06:49:29 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "0e8645a6-fe51-41df-92f4-9d83681f785b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083919Z:217891e0-5350-40b5-89d9-1273cbb9f4ff", + "client-request-id" : "4b5c5131-f25d-4cd4-b350-0481f9bfa981", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T064929Z:adecb504-3aed-4704-86d1-c71c06e208b9", "Expires" : "-1", - "x-ms-request-id" : "3307d950-4042-467b-894e-3ecc138157cb", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "e9211861-244d-4d81-bb26-7556759fd7b0", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cbf85a9-4560-416b-b837-429256b2f79d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "40fe01bf-98ee-4827-b726-62e73b8bcacf" }, "Response" : { "content-length" : "1125", @@ -1852,27 +1768,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "x-ms-ratelimit-remaining-subscription-reads" : "11952", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1a82ae33-f768-4470-b89b-69733a5b1620", - "Date" : "Tue, 30 Nov 2021 08:39:50 GMT", + "x-ms-correlation-request-id" : "45b96b88-2ee0-41a4-940d-7c62ad2d440d", + "Date" : "Sun, 06 Mar 2022 06:50:00 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "8cbf85a9-4560-416b-b837-429256b2f79d", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T083950Z:1a82ae33-f768-4470-b89b-69733a5b1620", + "client-request-id" : "40fe01bf-98ee-4827-b726-62e73b8bcacf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065000Z:45b96b88-2ee0-41a4-940d-7c62ad2d440d", "Expires" : "-1", - "x-ms-request-id" : "3ad4ef6d-1bd4-4f7b-90f3-31839d187f02", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "822211fe-f0d8-4ef3-806a-0c2a8bfec07b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/redis/javacsmrc34932?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/redis/javacsmrc03795?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "c06b610b-cabb-4a9c-bb27-1eb16e5bfb78" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8878e31d-c48c-43e2-9821-8e3bc355ac4c" }, "Response" : { "content-length" : "1126", @@ -1880,27 +1796,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11968", + "x-ms-ratelimit-remaining-subscription-reads" : "11950", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c0954f2c-5257-46c0-a419-2337dfd6f34d", - "Date" : "Tue, 30 Nov 2021 08:40:22 GMT", + "x-ms-correlation-request-id" : "8f7a3083-f460-4ac8-8773-de2458bd7ef3", + "Date" : "Sun, 06 Mar 2022 06:50:31 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "813ce424-a354-4dd1-8e97-500396621e81", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "c06b610b-cabb-4a9c-bb27-1eb16e5bfb78", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T084022Z:c0954f2c-5257-46c0-a419-2337dfd6f34d", + "client-request-id" : "8878e31d-c48c-43e2-9821-8e3bc355ac4c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065031Z:8f7a3083-f460-4ac8-8773-de2458bd7ef3", "Expires" : "-1", - "x-ms-request-id" : "7a59b2a8-50be-41c8-9f0c-858569b40f3c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg14346/providers/Microsoft.Cache/Redis/javacsmrc34932\",\"location\":\"West US 3\",\"name\":\"javacsmrc34932\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"200\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa14331;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc34932.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "aab3f37d-148f-48c3-b476-54e7f97a43ea", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg75545/providers/Microsoft.Cache/Redis/javacsmrc03795\",\"location\":\"West US 3\",\"name\":\"javacsmrc03795\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"aof-backup-enabled\":\"true\",\"maxmemory-delta\":\"642\",\"aof-storage-connection-string-0\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\",\"aof-storage-connection-string-1\":\"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=javacsmsa16520;AccountKey=***REMOVED***\"},\"accessKeys\":null,\"hostName\":\"javacsmrc03795.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg14346?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg75545?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5405f6f-2a0b-4160-bcde-6181c31f2ef2", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "57a69f84-4846-4c06-af21-5337ce54c40a", "Content-Type" : "application/json" }, "Response" : { @@ -1909,23 +1825,23 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "x-ms-correlation-request-id" : "46b856e0-0f05-44d8-8a72-6368f095304b", - "Date" : "Tue, 30 Nov 2021 08:40:27 GMT", + "x-ms-correlation-request-id" : "dc43f60a-4e7a-4f10-ab7e-8fd64fc0990f", + "Date" : "Sun, 06 Mar 2022 06:50:35 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T084028Z:46b856e0-0f05-44d8-8a72-6368f095304b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065035Z:dc43f60a-4e7a-4f10-ab7e-8fd64fc0990f", "Expires" : "-1", - "x-ms-request-id" : "46b856e0-0f05-44d8-8a72-6368f095304b", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNDM0Ni1XRVNUVVMzIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMzIn0?api-version=2021-01-01" + "x-ms-request-id" : "dc43f60a-4e7a-4f10-ab7e-8fd64fc0990f", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NTU0NS1XRVNUVVMzIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMzIn0?api-version=2021-01-01" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg14346Second?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg75545Second?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.11.0-beta.1 (17; Windows 10; 10.0)", - "x-ms-client-request-id" : "7f2f359d-3d43-49d6-bda1-a7a6fc349767", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1be1be4b-1a3d-4730-857f-a78f2260eb22", "Content-Type" : "application/json" }, "Response" : { @@ -1935,18 +1851,18 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "404", - "x-ms-correlation-request-id" : "a109fd62-7249-4d66-99df-d0e098f35671", - "Date" : "Tue, 30 Nov 2021 08:40:28 GMT", + "x-ms-correlation-request-id" : "7b916f8a-f1e5-4558-b4c7-3da07fe3a8ce", + "Date" : "Sun, 06 Mar 2022 06:50:35 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "x-ms-failure-cause" : "gateway", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211130T084028Z:a109fd62-7249-4d66-99df-d0e098f35671", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T065036Z:7b916f8a-f1e5-4558-b4c7-3da07fe3a8ce", "Expires" : "-1", - "x-ms-request-id" : "a109fd62-7249-4d66-99df-d0e098f35671", - "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg14346Second' could not be found.\"}}", + "x-ms-request-id" : "7b916f8a-f1e5-4558-b4c7-3da07fe3a8ce", + "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg75545Second' could not be found.\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null } ], - "variables" : [ "javacsmrg14346", "javacsmrc34932", "javacsmsa14331" ] + "variables" : [ "javacsmrg75545", "javacsmrc03795", "javacsmsa16520" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canRedisVersionUpdate.json b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canRedisVersionUpdate.json index e66fcaf7a7766..d82093aa531fe 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canRedisVersionUpdate.json +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/resources/session-records/RedisCacheOperationsTests.canRedisVersionUpdate.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg92715?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg65061?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.10.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a047e88-08e1-4f20-ac90-11eb48039c99", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "93ba51b1-8a13-46c5-8f07-eed9cf10f2b8", "Content-Type" : "application/json" }, "Response" : { @@ -14,417 +14,418 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "x-ms-correlation-request-id" : "496f3c86-1247-4412-9060-f57c684b8226", - "Date" : "Tue, 09 Nov 2021 07:18:19 GMT", + "x-ms-correlation-request-id" : "e0a2ea5a-b419-4c9b-8864-da6ce3c469df", + "Date" : "Sun, 06 Mar 2022 06:20:34 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T071820Z:496f3c86-1247-4412-9060-f57c684b8226", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062034Z:e0a2ea5a-b419-4c9b-8864-da6ce3c469df", "Expires" : "-1", - "x-ms-request-id" : "496f3c86-1247-4412-9060-f57c684b8226", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715\",\"name\":\"javacsmrg92715\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "e0a2ea5a-b419-4c9b-8864-da6ce3c469df", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061\",\"name\":\"javacsmrg65061\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastasia\",\"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/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.10.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f62977cb-7dcd-43e9-8ea8-ac0ae3dfd605", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "eabc34e7-ba83-428f-a7ba-405808d9d647", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "831", + "content-length" : "1107", "Server" : "Microsoft-HTTPAPI/2.0", "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" : "de60bc7e-3ced-4804-9866-bec6f7a46eed", - "Date" : "Tue, 09 Nov 2021 07:18:24 GMT", + "x-ms-correlation-request-id" : "2bb4601d-6047-4486-8a5b-1c45ba4c409c", + "Date" : "Sun, 06 Mar 2022 06:20:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f62977cb-7dcd-43e9-8ea8-ac0ae3dfd605", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T071824Z:de60bc7e-3ced-4804-9866-bec6f7a46eed", + "client-request-id" : "eabc34e7-ba83-428f-a7ba-405808d9d647", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062039Z:2bb4601d-6047-4486-8a5b-1c45ba4c409c", "Expires" : "-1", - "x-ms-request-id" : "2ef37113-35f5-4dd8-a8d6-c348f613f193", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"},\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East Asia/asyncOperations/a1f1a4e1-7742-42be-83f3-a2922187e3ef?api-version=2021-06-01", + "x-ms-request-id" : "a1f1a4e1-7742-42be-83f3-a2922187e3ef", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"javacsmrc47651\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.1.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"***REMOVED***\",\r\n \"secondaryKey\": \"***REMOVED***\"\r\n },\r\n \"hostName\": \"javacsmrc47651.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7f08e73d-f64b-457b-88ce-0f1377e6037c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "04b17dd4-eaee-4eb0-bd22-e2b53fb70995" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "9c3f3633-017f-4aee-8ec9-98979e48bf26", - "Date" : "Tue, 09 Nov 2021 07:18:54 GMT", + "x-ms-correlation-request-id" : "c918aa90-ca23-4320-931b-247e8262c30b", + "Date" : "Sun, 06 Mar 2022 06:21:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "7f08e73d-f64b-457b-88ce-0f1377e6037c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T071854Z:9c3f3633-017f-4aee-8ec9-98979e48bf26", + "client-request-id" : "04b17dd4-eaee-4eb0-bd22-e2b53fb70995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062109Z:c918aa90-ca23-4320-931b-247e8262c30b", "Expires" : "-1", - "x-ms-request-id" : "4b79b545-de32-4e1b-be4d-d6142ebe4fcc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "bd9a2916-6d4c-493f-900f-6c91b95b9cd9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cfea8923-3510-459a-be0c-b001c6cfe584" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "2bfb8eac-14b9-435a-bc52-763f229bbe6e" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "12d619b1-9c04-4b95-b1f7-ba4d2021aaf5", - "Date" : "Tue, 09 Nov 2021 07:19:24 GMT", + "x-ms-correlation-request-id" : "e1fede9a-352d-4f33-a18d-c8eceadcff5c", + "Date" : "Sun, 06 Mar 2022 06:21:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cfea8923-3510-459a-be0c-b001c6cfe584", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T071925Z:12d619b1-9c04-4b95-b1f7-ba4d2021aaf5", + "client-request-id" : "2bfb8eac-14b9-435a-bc52-763f229bbe6e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062139Z:e1fede9a-352d-4f33-a18d-c8eceadcff5c", "Expires" : "-1", - "x-ms-request-id" : "66adbd74-d95a-42e4-8e01-b72e07d7acbf", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "ebf2ca8c-b13c-4f21-86ba-5774be4c432a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2645511e-ec01-4954-b0cd-4b16335f69c0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "07682414-a161-4d9a-84e9-80eb5d4dca5f" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "38db5113-ed85-447c-8494-60aa6acbcc70", - "Date" : "Tue, 09 Nov 2021 07:19:54 GMT", + "x-ms-correlation-request-id" : "f551a479-9c62-4239-bbe6-f8b3d67982b6", + "Date" : "Sun, 06 Mar 2022 06:22:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "2645511e-ec01-4954-b0cd-4b16335f69c0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T071955Z:38db5113-ed85-447c-8494-60aa6acbcc70", + "client-request-id" : "07682414-a161-4d9a-84e9-80eb5d4dca5f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062209Z:f551a479-9c62-4239-bbe6-f8b3d67982b6", "Expires" : "-1", - "x-ms-request-id" : "56e683eb-a2d3-4f2b-8036-793bf29243cf", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "5213c385-2cdc-44eb-8943-af8a5aededb4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "7866596c-65c2-497f-af0b-9195003c3034" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8938a723-689b-440d-a3d2-1bd36cfb9b8c" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "ecba42f2-0531-489c-a94a-3bfb2f7910cf", - "Date" : "Tue, 09 Nov 2021 07:20:24 GMT", + "x-ms-correlation-request-id" : "d15843c8-a2be-491e-a843-0384f209b577", + "Date" : "Sun, 06 Mar 2022 06:22:39 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "7866596c-65c2-497f-af0b-9195003c3034", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072025Z:ecba42f2-0531-489c-a94a-3bfb2f7910cf", + "client-request-id" : "8938a723-689b-440d-a3d2-1bd36cfb9b8c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062240Z:d15843c8-a2be-491e-a843-0384f209b577", "Expires" : "-1", - "x-ms-request-id" : "c45ce582-a3c6-4620-827a-a28bc78a47d4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "44080ffe-7520-40b8-8685-632f9beed77d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e5daa09-5989-4798-810d-8ef45bfe930b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ab6d9a2e-023a-4907-945c-0b776a8a2f1f" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "930cf7bd-be56-4f10-8f01-758af6c3ccf4", - "Date" : "Tue, 09 Nov 2021 07:20:54 GMT", + "x-ms-correlation-request-id" : "251056ea-0e05-40c9-8fff-d81ca57e6700", + "Date" : "Sun, 06 Mar 2022 06:23:09 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "6e5daa09-5989-4798-810d-8ef45bfe930b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072055Z:930cf7bd-be56-4f10-8f01-758af6c3ccf4", + "client-request-id" : "ab6d9a2e-023a-4907-945c-0b776a8a2f1f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062310Z:251056ea-0e05-40c9-8fff-d81ca57e6700", "Expires" : "-1", - "x-ms-request-id" : "4405ca57-c94f-4bb9-b736-0b85d30216af", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "a1311857-b549-4aa7-9313-e5fb001ae097", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca2e391d-0a28-4313-9613-05a8ee61694f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f95e1605-5154-4521-a625-927202f98d6e" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "f6f98284-fb87-495e-ad44-9b429b778b91", - "Date" : "Tue, 09 Nov 2021 07:21:25 GMT", + "x-ms-correlation-request-id" : "c192423b-9d17-48f8-88ce-28fb0702bcb8", + "Date" : "Sun, 06 Mar 2022 06:23:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "ca2e391d-0a28-4313-9613-05a8ee61694f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072125Z:f6f98284-fb87-495e-ad44-9b429b778b91", + "client-request-id" : "f95e1605-5154-4521-a625-927202f98d6e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062340Z:c192423b-9d17-48f8-88ce-28fb0702bcb8", "Expires" : "-1", - "x-ms-request-id" : "1754686d-44b8-468e-9ec7-db5452daaaa6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "3b441615-9fa5-4d96-b920-d727d1516257", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "21d3d7f6-4eb4-4473-bfde-9ca4e27176fd" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "17dd542b-7beb-4369-b921-5a24221c59af" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "d3a892a8-75e0-4fa3-b26d-f537e08ce07b", - "Date" : "Tue, 09 Nov 2021 07:21:55 GMT", + "x-ms-correlation-request-id" : "3795fab1-9558-4423-b18a-f1d078fef37f", + "Date" : "Sun, 06 Mar 2022 06:24:10 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "21d3d7f6-4eb4-4473-bfde-9ca4e27176fd", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072155Z:d3a892a8-75e0-4fa3-b26d-f537e08ce07b", + "client-request-id" : "17dd542b-7beb-4369-b921-5a24221c59af", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062410Z:3795fab1-9558-4423-b18a-f1d078fef37f", "Expires" : "-1", - "x-ms-request-id" : "92e55d26-e8fe-4da9-8a51-4e18f857b459", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "aaccd4c6-4946-47bb-8300-0a62fd20c2c3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "975a6924-3996-44e0-b008-63e2c701ea44" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "465cf428-5f4a-4017-a936-9c366c2167a5" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "7c87409c-c2c5-4635-83f8-b972d4564bde", - "Date" : "Tue, 09 Nov 2021 07:22:25 GMT", + "x-ms-correlation-request-id" : "e03a3fe3-308c-405d-9968-cdf8c31f971c", + "Date" : "Sun, 06 Mar 2022 06:24:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "975a6924-3996-44e0-b008-63e2c701ea44", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072226Z:7c87409c-c2c5-4635-83f8-b972d4564bde", + "client-request-id" : "465cf428-5f4a-4017-a936-9c366c2167a5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062440Z:e03a3fe3-308c-405d-9968-cdf8c31f971c", "Expires" : "-1", - "x-ms-request-id" : "513db8b2-3fc8-4a68-b161-324083cdb08d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "a91a3705-d54b-4401-ab0c-daeca476aa0e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a78faac-8cb1-43a9-822f-9dd904c51b58" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "884c8781-47fb-43ab-adc1-7ee12f641495" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "ed152fe0-4d9a-4570-aa00-b147f803d0f4", - "Date" : "Tue, 09 Nov 2021 07:22:55 GMT", + "x-ms-correlation-request-id" : "07835527-7807-46f2-bbdb-4cb66af1cca1", + "Date" : "Sun, 06 Mar 2022 06:25:10 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "6a78faac-8cb1-43a9-822f-9dd904c51b58", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072256Z:ed152fe0-4d9a-4570-aa00-b147f803d0f4", + "client-request-id" : "884c8781-47fb-43ab-adc1-7ee12f641495", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062511Z:07835527-7807-46f2-bbdb-4cb66af1cca1", "Expires" : "-1", - "x-ms-request-id" : "1caa1653-f317-4386-81db-d782a972d3ce", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "8b31b99f-2ead-41f4-9199-ee10d139dbc8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2761d5dd-7b8b-41d3-a1cf-1de516903cf0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0c039f05-e3d7-467b-9b12-1cbf10a591f7" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "d6888c98-d080-44dc-89e6-97a0e65c30b5", - "Date" : "Tue, 09 Nov 2021 07:23:25 GMT", + "x-ms-correlation-request-id" : "7b1e28c4-5e9e-440b-b097-2db641301a84", + "Date" : "Sun, 06 Mar 2022 06:25:40 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "2761d5dd-7b8b-41d3-a1cf-1de516903cf0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072326Z:d6888c98-d080-44dc-89e6-97a0e65c30b5", + "client-request-id" : "0c039f05-e3d7-467b-9b12-1cbf10a591f7", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062541Z:7b1e28c4-5e9e-440b-b097-2db641301a84", "Expires" : "-1", - "x-ms-request-id" : "becc1976-cff0-48a5-b35c-68c7adb41fbc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "4e25e8d3-a0d5-4940-bf56-df3def7cbea7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "36b18eeb-4fa7-4da6-9c60-8a01ee6a876f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "23d45dcd-5ac0-4f46-89ca-735892911194" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "f20445de-c7ef-489d-96d6-916df95653b1", - "Date" : "Tue, 09 Nov 2021 07:23:56 GMT", + "x-ms-correlation-request-id" : "c98cdee2-bee9-4375-876d-af8a6ef70dd2", + "Date" : "Sun, 06 Mar 2022 06:26:10 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "36b18eeb-4fa7-4da6-9c60-8a01ee6a876f", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072356Z:f20445de-c7ef-489d-96d6-916df95653b1", + "client-request-id" : "23d45dcd-5ac0-4f46-89ca-735892911194", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062611Z:c98cdee2-bee9-4375-876d-af8a6ef70dd2", "Expires" : "-1", - "x-ms-request-id" : "e5be45ed-2507-4d7f-ba60-18ed7c239ddc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "e179c633-0eab-4cc0-aad9-7e8a4b017a73", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1362ec6f-f19c-4423-846d-7abddb3c1059" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5615e9a5-76c9-4aec-bcb3-7dd2ab55c299" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "560d9ef9-6b63-4268-9b64-67d8542da10a", - "Date" : "Tue, 09 Nov 2021 07:24:26 GMT", + "x-ms-correlation-request-id" : "a2593796-bf89-4604-b5d6-d63789c1428b", + "Date" : "Sun, 06 Mar 2022 06:26:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "1362ec6f-f19c-4423-846d-7abddb3c1059", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072426Z:560d9ef9-6b63-4268-9b64-67d8542da10a", + "client-request-id" : "5615e9a5-76c9-4aec-bcb3-7dd2ab55c299", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062641Z:a2593796-bf89-4604-b5d6-d63789c1428b", "Expires" : "-1", - "x-ms-request-id" : "1a6e02e7-8419-4662-a143-6808ab4debf9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "a913e442-1224-44c2-9269-33bcfd5a422a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7462259-f445-4b37-9e7c-3b2148e1312d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6e3cffca-9ee4-4e7a-84e6-4b7f37e9abfd" }, "Response" : { - "content-length" : "712", + "content-length" : "714", "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", - "x-ms-correlation-request-id" : "caf6c20a-4df8-4cc7-b1c1-d11f5bc1561d", - "Date" : "Tue, 09 Nov 2021 07:24:56 GMT", + "x-ms-correlation-request-id" : "97bef446-1749-4fe3-9217-bcdc0d571537", + "Date" : "Sun, 06 Mar 2022 06:27:11 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "a7462259-f445-4b37-9e7c-3b2148e1312d", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072456Z:caf6c20a-4df8-4cc7-b1c1-d11f5bc1561d", + "client-request-id" : "6e3cffca-9ee4-4e7a-84e6-4b7f37e9abfd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062711Z:97bef446-1749-4fe3-9217-bcdc0d571537", "Expires" : "-1", - "x-ms-request-id" : "b7a1ae8d-caf7-490e-9d41-8f5a9ea30a0e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "f063a61d-ecef-4e09-966d-8d475a593d4e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "fefba75a-40da-4959-ab16-45b263c182a9" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7a97ad24-c248-499a-9c6d-2c7cbb74f1cd" }, "Response" : { "content-length" : "712", @@ -434,25 +435,25 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "x-ms-correlation-request-id" : "808f0b28-e136-4ec7-b8ea-74821171ef74", - "Date" : "Tue, 09 Nov 2021 07:25:26 GMT", + "x-ms-correlation-request-id" : "6848f3e1-b78d-4b91-855f-99de85f7bf17", + "Date" : "Sun, 06 Mar 2022 06:27:41 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "fefba75a-40da-4959-ab16-45b263c182a9", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072527Z:808f0b28-e136-4ec7-b8ea-74821171ef74", + "client-request-id" : "7a97ad24-c248-499a-9c6d-2c7cbb74f1cd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062742Z:6848f3e1-b78d-4b91-855f-99de85f7bf17", "Expires" : "-1", - "x-ms-request-id" : "c545d4f8-5fc8-4bde-b5af-d234bbeabeac", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "f5e7606c-38ca-412d-aade-638fb5cd2763", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "1562cda8-2763-455d-8afc-a4361fd767ae" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "37d3d737-d440-4f85-a415-f37d50ae1f0e" }, "Response" : { "content-length" : "712", @@ -462,447 +463,421 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f8de8f88-fc10-4560-91ad-de0e8b15daa1", - "Date" : "Tue, 09 Nov 2021 07:25:56 GMT", + "x-ms-correlation-request-id" : "92241dd9-7b5c-43cd-952c-6b630243447d", + "Date" : "Sun, 06 Mar 2022 06:28:13 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "1562cda8-2763-455d-8afc-a4361fd767ae", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072557Z:f8de8f88-fc10-4560-91ad-de0e8b15daa1", + "client-request-id" : "37d3d737-d440-4f85-a415-f37d50ae1f0e", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062813Z:92241dd9-7b5c-43cd-952c-6b630243447d", "Expires" : "-1", - "x-ms-request-id" : "72125571-db5d-4f28-bb55-2c7c2839d713", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "669854d9-1ae7-4d19-a00f-baeccc2c269e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc04deb9-dda7-43b0-bba3-96f36a5d015d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "1c825ac2-6f0f-4e5e-80ca-563e9aa62a12" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "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", - "x-ms-correlation-request-id" : "f71cdfb1-e5f0-43c3-9ea0-764ff58797fb", - "Date" : "Tue, 09 Nov 2021 07:26:27 GMT", + "x-ms-correlation-request-id" : "08102134-0efa-4588-b82c-7dcba9c7d0c8", + "Date" : "Sun, 06 Mar 2022 06:28:42 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "cc04deb9-dda7-43b0-bba3-96f36a5d015d", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072628Z:f71cdfb1-e5f0-43c3-9ea0-764ff58797fb", + "client-request-id" : "1c825ac2-6f0f-4e5e-80ca-563e9aa62a12", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062843Z:08102134-0efa-4588-b82c-7dcba9c7d0c8", "Expires" : "-1", - "x-ms-request-id" : "dee6710e-9269-4eca-a39a-380a6f1e11fa", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "fc357135-c878-41b6-9b46-d4f3b28cd973", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f0100ab-84b9-4354-86d5-6bba29e31c41" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0b08899f-30b7-4d11-a658-9a9e98f32a11" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "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", - "x-ms-correlation-request-id" : "51beec75-4d21-47c3-9e2c-92fd8bb48c12", - "Date" : "Tue, 09 Nov 2021 07:26:58 GMT", + "x-ms-correlation-request-id" : "c684f9a3-f1c3-4afc-9347-b3f6b0b0f2d0", + "Date" : "Sun, 06 Mar 2022 06:29:12 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "4f0100ab-84b9-4354-86d5-6bba29e31c41", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072658Z:51beec75-4d21-47c3-9e2c-92fd8bb48c12", + "client-request-id" : "0b08899f-30b7-4d11-a658-9a9e98f32a11", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062913Z:c684f9a3-f1c3-4afc-9347-b3f6b0b0f2d0", "Expires" : "-1", - "x-ms-request-id" : "347d5144-438e-448a-bbd3-c6bf6556742b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "24d8348c-8892-4477-9196-a2fea66caac4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e9e3c3c-81ea-42fe-9f76-70f7ce969ef6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "87884d9f-a2d2-47e9-a327-70632a4a0d5c" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "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", - "x-ms-correlation-request-id" : "b108ca14-b1b0-4f96-834c-f78c25eb9da0", - "Date" : "Tue, 09 Nov 2021 07:27:29 GMT", + "x-ms-correlation-request-id" : "44b5e024-9775-4bbe-8075-adb108438000", + "Date" : "Sun, 06 Mar 2022 06:29:42 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "5e9e3c3c-81ea-42fe-9f76-70f7ce969ef6", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072730Z:b108ca14-b1b0-4f96-834c-f78c25eb9da0", + "client-request-id" : "87884d9f-a2d2-47e9-a327-70632a4a0d5c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T062943Z:44b5e024-9775-4bbe-8075-adb108438000", "Expires" : "-1", - "x-ms-request-id" : "a72f504c-7932-4208-896c-8ef19a4c6cd1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c1363434-f6af-4f0f-9ee3-e13dee8a4449", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3c60d4e-e7f1-48ba-a7c1-6f269736c4a3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "87dc0102-b341-468d-b4de-d15ffc98ed8c" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "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", - "x-ms-correlation-request-id" : "e3aa15df-eba2-4788-8d07-1c15e0b21dd4", - "Date" : "Tue, 09 Nov 2021 07:28:00 GMT", + "x-ms-correlation-request-id" : "ef83879f-1a85-4029-bbf8-54d421e9d74a", + "Date" : "Sun, 06 Mar 2022 06:30:13 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "e3c60d4e-e7f1-48ba-a7c1-6f269736c4a3", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072801Z:e3aa15df-eba2-4788-8d07-1c15e0b21dd4", + "client-request-id" : "87dc0102-b341-468d-b4de-d15ffc98ed8c", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063013Z:ef83879f-1a85-4029-bbf8-54d421e9d74a", "Expires" : "-1", - "x-ms-request-id" : "f41658dc-a976-4fbb-8e3d-c3fef890ca1e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "52589cf4-73e7-400a-8e43-d64b3e992211", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "69d37d04-1013-4ab0-bcac-e1c764a9f6c4" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ddfa8c1e-3b14-4223-9730-4738b21d30a1" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "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", - "x-ms-correlation-request-id" : "94d3526f-0b2f-4462-95bf-e96e287d2a67", - "Date" : "Tue, 09 Nov 2021 07:28:45 GMT", + "x-ms-correlation-request-id" : "7a0a1ab2-42d0-4ae3-9fe2-8a80b44c64e2", + "Date" : "Sun, 06 Mar 2022 06:30:43 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "69d37d04-1013-4ab0-bcac-e1c764a9f6c4", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072845Z:94d3526f-0b2f-4462-95bf-e96e287d2a67", + "client-request-id" : "ddfa8c1e-3b14-4223-9730-4738b21d30a1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063044Z:7a0a1ab2-42d0-4ae3-9fe2-8a80b44c64e2", "Expires" : "-1", - "x-ms-request-id" : "ade51145-45ef-460c-b664-a37c9277d473", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "5ae57a5d-8e04-4730-8039-71dbe1d1c43a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f64a2ab1-0324-4568-9adf-60c45769d646" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "be942e21-f6a2-4be0-b3dd-54ef35aa1b2d" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "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", - "x-ms-correlation-request-id" : "b07abfae-09b0-4efb-88ad-cf80ddb20302", - "Date" : "Tue, 09 Nov 2021 07:29:15 GMT", + "x-ms-correlation-request-id" : "b3e8a984-f748-4d9d-a924-92d628865df9", + "Date" : "Sun, 06 Mar 2022 06:31:13 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "f64a2ab1-0324-4568-9adf-60c45769d646", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072916Z:b07abfae-09b0-4efb-88ad-cf80ddb20302", + "client-request-id" : "be942e21-f6a2-4be0-b3dd-54ef35aa1b2d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063114Z:b3e8a984-f748-4d9d-a924-92d628865df9", "Expires" : "-1", - "x-ms-request-id" : "283a5cb0-c57c-4f2c-b542-281623288844", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c102e6df-9f62-4643-90ba-30d6cca90fc0", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "536b3d4d-bdd7-48c9-98ca-c8bbf58f2c6b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0e9b0211-16dd-47ea-9e8e-13fa0d732ad1" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "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", - "x-ms-correlation-request-id" : "8f2b4b91-d076-4f87-bf7a-9fd7388897de", - "Date" : "Tue, 09 Nov 2021 07:29:46 GMT", + "x-ms-correlation-request-id" : "293cd775-65b9-4c72-9e81-9e66dfd5182c", + "Date" : "Sun, 06 Mar 2022 06:31:43 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "536b3d4d-bdd7-48c9-98ca-c8bbf58f2c6b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T072947Z:8f2b4b91-d076-4f87-bf7a-9fd7388897de", + "client-request-id" : "0e9b0211-16dd-47ea-9e8e-13fa0d732ad1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063144Z:293cd775-65b9-4c72-9e81-9e66dfd5182c", "Expires" : "-1", - "x-ms-request-id" : "d54ec677-cb61-4941-acf0-ee343f77c040", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "74fb8d63-6b0f-448a-835c-25434babf2bc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "52023ba6-7192-4c8f-9b8f-435350390f64" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5da812ef-7e66-42a7-b11b-d20f75fb957f" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "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", - "x-ms-correlation-request-id" : "62cdd300-ca81-4ee0-acab-631b7d3e9d69", - "Date" : "Tue, 09 Nov 2021 07:30:17 GMT", + "x-ms-correlation-request-id" : "139824ea-f702-4456-8a48-7fc57f38d715", + "Date" : "Sun, 06 Mar 2022 06:32:14 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "52023ba6-7192-4c8f-9b8f-435350390f64", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T073018Z:62cdd300-ca81-4ee0-acab-631b7d3e9d69", + "client-request-id" : "5da812ef-7e66-42a7-b11b-d20f75fb957f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063214Z:139824ea-f702-4456-8a48-7fc57f38d715", "Expires" : "-1", - "x-ms-request-id" : "e65118dd-e043-477b-992b-2722dda70e0d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "d6d777ae-432a-49e9-b462-d0ede2f9300a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2615647e-5fd5-4d6c-ac76-72f37a75ddff" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b67cec97-ace5-401c-b3fa-b1194674b9b5" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "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", - "x-ms-correlation-request-id" : "1f5a5802-6fa1-4fab-b938-a67b78812482", - "Date" : "Tue, 09 Nov 2021 07:30:48 GMT", + "x-ms-correlation-request-id" : "cc4acff8-6c59-4921-a58c-d4bf7dcf0ba4", + "Date" : "Sun, 06 Mar 2022 06:32:44 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "2615647e-5fd5-4d6c-ac76-72f37a75ddff", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T073048Z:1f5a5802-6fa1-4fab-b938-a67b78812482", + "client-request-id" : "b67cec97-ace5-401c-b3fa-b1194674b9b5", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063245Z:cc4acff8-6c59-4921-a58c-d4bf7dcf0ba4", "Expires" : "-1", - "x-ms-request-id" : "42722f64-76b2-40c6-9b75-68c899b2664b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "136114a9-7790-4797-a04d-41bfbbb0137b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b7c45bb-5892-422e-8df5-7a891688a270" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "cbf85626-488e-4da6-af80-f1a1840f3252" }, "Response" : { - "content-length" : "710", - "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", - "x-ms-correlation-request-id" : "52dfadd3-1611-4456-8611-2f8181da5a2f", - "Date" : "Tue, 09 Nov 2021 07:31:19 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", - "Cache-Control" : "no-cache", - "client-request-id" : "5b7c45bb-5892-422e-8df5-7a891688a270", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T073119Z:52dfadd3-1611-4456-8611-2f8181da5a2f", - "Expires" : "-1", - "x-ms-request-id" : "3fcc6503-268b-4eb3-aab2-392b341f98b1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8" - }, - "Exception" : null - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2f814ad-2aa5-4695-a8e0-bec37c6bae36" - }, - "Response" : { - "content-length" : "710", + "content-length" : "712", "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", - "x-ms-correlation-request-id" : "5c19c205-64b8-43e2-9eaf-d810c874ba0f", - "Date" : "Tue, 09 Nov 2021 07:31:50 GMT", + "x-ms-correlation-request-id" : "a750d4ec-6528-4bed-baaf-f57c1857bd30", + "Date" : "Sun, 06 Mar 2022 06:33:15 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "d2f814ad-2aa5-4695-a8e0-bec37c6bae36", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T073150Z:5c19c205-64b8-43e2-9eaf-d810c874ba0f", + "client-request-id" : "cbf85626-488e-4da6-af80-f1a1840f3252", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063316Z:a750d4ec-6528-4bed-baaf-f57c1857bd30", "Expires" : "-1", - "x-ms-request-id" : "a38b9c33-59fa-474f-a465-f41db0944cc0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c6a8d6d8-bad5-4d86-94b4-3d6590424da6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "dda86b51-cbd5-4236-8ebb-02669c568444" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "f80552b8-78fd-4dfb-8531-4d08eae6ac45" }, "Response" : { - "content-length" : "710", + "content-length" : "712", "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", - "x-ms-correlation-request-id" : "f0ea897d-9e4c-47d1-8544-a845690d728a", - "Date" : "Tue, 09 Nov 2021 07:32:20 GMT", + "x-ms-correlation-request-id" : "ac3b6ddd-81db-499b-a101-04aee84d304b", + "Date" : "Sun, 06 Mar 2022 06:33:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "dda86b51-cbd5-4236-8ebb-02669c568444", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T073221Z:f0ea897d-9e4c-47d1-8544-a845690d728a", + "client-request-id" : "f80552b8-78fd-4dfb-8531-4d08eae6ac45", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063346Z:ac3b6ddd-81db-499b-a101-04aee84d304b", "Expires" : "-1", - "x-ms-request-id" : "0888b6ce-2a9e-4efc-a58b-4ddd092ebf3d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "a8b6df4b-e388-44b5-b868-af4a7c5e1d7b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "5cebf412-ef88-48d3-82f6-078ce26bd71b" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "dacce484-1779-4192-8553-1483808ab714" }, "Response" : { - "content-length" : "711", + "content-length" : "713", "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", - "x-ms-correlation-request-id" : "7c3f1982-9c0a-4af2-859a-bf2764a3ff3c", - "Date" : "Tue, 09 Nov 2021 07:32:51 GMT", + "x-ms-correlation-request-id" : "8f370491-8e67-4059-89c9-0278906ad206", + "Date" : "Sun, 06 Mar 2022 06:34:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "5cebf412-ef88-48d3-82f6-078ce26bd71b", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T073252Z:7c3f1982-9c0a-4af2-859a-bf2764a3ff3c", + "client-request-id" : "dacce484-1779-4192-8553-1483808ab714", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063416Z:8f370491-8e67-4059-89c9-0278906ad206", "Expires" : "-1", - "x-ms-request-id" : "0f58aee9-a1fd-4c76-abdb-bdf0c1f60cde", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c1098118-3dea-4caf-aa89-41d6396ed868", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.10.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8da9dc0-4d38-4559-8c3b-f17a90054ea4", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a467ca16-ce8a-42a0-8b38-ceb10669d8b8", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "711", + "content-length" : "963", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "x-ms-correlation-request-id" : "69e6d1a4-1b53-4529-b4d0-419bbac070ae", - "Date" : "Tue, 09 Nov 2021 07:32:54 GMT", + "x-ms-correlation-request-id" : "0387186c-1709-4720-af92-87447a938edd", + "Date" : "Sun, 06 Mar 2022 06:34:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "b8da9dc0-4d38-4559-8c3b-f17a90054ea4", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T073255Z:69e6d1a4-1b53-4529-b4d0-419bbac070ae", + "client-request-id" : "a467ca16-ce8a-42a0-8b38-ceb10669d8b8", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063417Z:0387186c-1709-4720-af92-87447a938edd", "Expires" : "-1", - "x-ms-request-id" : "0a5f1ac4-50a1-4b81-ab96-969b1544aaad", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "Content-Type" : "application/json; charset=utf-8" + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East Asia/asyncOperations/daae9331-1b94-4d0e-a5cf-4943d490ecf4?api-version=2021-06-01", + "x-ms-request-id" : "daae9331-1b94-4d0e-a5cf-4943d490ecf4", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\r\n \"location\": \"East Asia\",\r\n \"name\": \"javacsmrc47651\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"4.1.14\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": true,\r\n \"isPrimary\": true\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"30\",\r\n \"maxfragmentationmemory-reserved\": \"30\",\r\n \"maxmemory-delta\": \"30\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"javacsmrc47651.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/asyncOperations/daae9331-1b94-4d0e-a5cf-4943d490ecf4?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.10.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "268d6b08-0ac9-4397-b837-8d8bcb09120c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4664d370-3bd1-4c83-afd6-8fee86a53ac9", "Content-Type" : "application/json" }, "Response" : { - "content-length" : "711", + "content-length" : "713", "Server" : "Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11999", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", - "x-ms-correlation-request-id" : "907ab193-19b4-442b-9588-8488bbe88996", - "Date" : "Tue, 09 Nov 2021 07:36:55 GMT", + "x-ms-correlation-request-id" : "98760f8e-23c6-4578-97cf-47b96227a0ec", + "Date" : "Sun, 06 Mar 2022 06:39:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "268d6b08-0ac9-4397-b837-8d8bcb09120c", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T073656Z:907ab193-19b4-442b-9588-8488bbe88996", + "client-request-id" : "4664d370-3bd1-4c83-afd6-8fee86a53ac9", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063918Z:98760f8e-23c6-4578-97cf-47b96227a0ec", "Expires" : "-1", - "x-ms-request-id" : "1c336379-725b-4e28-b5c6-9136d6dc5519", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/Redis/javacsmrc36547\",\"location\":\"East Asia\",\"name\":\"javacsmrc36547\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"6.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc36547.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-request-id" : "c44da275-d6d8-4eef-be29-370a5d9d5ce9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/Redis/javacsmrc47651\",\"location\":\"East Asia\",\"name\":\"javacsmrc47651\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"6.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"30\",\"maxfragmentationmemory-reserved\":\"30\",\"maxmemory-delta\":\"30\"},\"accessKeys\":null,\"hostName\":\"javacsmrc47651.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547/firewallRules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651/firewallRules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.10.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "20d7994a-9a3f-4039-8889-92d4df409d22", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ded3d306-eb4e-4935-8deb-e9ca3100b623", "Content-Type" : "application/json" }, "Response" : { @@ -911,27 +886,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", "StatusCode" : "200", - "x-ms-correlation-request-id" : "12d22229-dd9a-4354-bc11-3daa2667792e", - "Date" : "Tue, 09 Nov 2021 07:36:56 GMT", + "x-ms-correlation-request-id" : "2e77f731-1cf1-4d48-8a33-b45804e6485d", + "Date" : "Sun, 06 Mar 2022 06:39:17 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "20d7994a-9a3f-4039-8889-92d4df409d22", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T073656Z:12d22229-dd9a-4354-bc11-3daa2667792e", + "client-request-id" : "ded3d306-eb4e-4935-8deb-e9ca3100b623", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063918Z:2e77f731-1cf1-4d48-8a33-b45804e6485d", "Expires" : "-1", - "x-ms-request-id" : "d77c9856-7082-4305-a7e3-9872ae847322", + "x-ms-request-id" : "0ff29df4-1caf-4e87-a223-deec264ea8f7", "Body" : "{\"value\":[]}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92715/providers/Microsoft.Cache/redis/javacsmrc36547/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg65061/providers/Microsoft.Cache/redis/javacsmrc47651/patchSchedules?api-version=2021-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.10.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "2da3b26c-2597-4fea-a448-a6619ce55bdf", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8318260a-bc08-465e-84ff-6fe5dbb3a351", "Content-Type" : "application/json" }, "Response" : { @@ -940,27 +915,27 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "404", - "x-ms-correlation-request-id" : "0bd4991d-a631-4a11-9cc8-3051c998eb62", - "Date" : "Tue, 09 Nov 2021 07:36:56 GMT", + "x-ms-correlation-request-id" : "e8d4eafc-69c7-4e37-ad74-8dad527b08a2", + "Date" : "Sun, 06 Mar 2022 06:39:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "x-rp-server-mvid" : "87449295-62a0-4537-a506-db27967fba1e", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", "Cache-Control" : "no-cache", - "client-request-id" : "2da3b26c-2597-4fea-a448-a6619ce55bdf", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T073657Z:0bd4991d-a631-4a11-9cc8-3051c998eb62", + "client-request-id" : "8318260a-bc08-465e-84ff-6fe5dbb3a351", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063918Z:e8d4eafc-69c7-4e37-ad74-8dad527b08a2", "Expires" : "-1", - "x-ms-request-id" : "0f2121f8-6d0a-4f4b-8cc1-97f2da0db0be", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc36547'.\\r\\nRequestID=0f2121f8-6d0a-4f4b-8cc1-97f2da0db0be\",\"target\":null}}", + "x-ms-request-id" : "caf756a0-5545-48fc-b69c-a7bb3f205280", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc47651'.\\r\\nRequestID=caf756a0-5545-48fc-b69c-a7bb3f205280\",\"target\":null}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg92715?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg65061?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.10.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f68657a4-4aaf-4b9a-805c-b1d3a92bd10c", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "87226984-0735-4b19-8e4f-f735d9d36a0b", "Content-Type" : "application/json" }, "Response" : { @@ -969,23 +944,23 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "x-ms-correlation-request-id" : "2cf34dc3-98e9-4a69-bf45-f8530c9e0584", - "Date" : "Tue, 09 Nov 2021 07:36:58 GMT", + "x-ms-correlation-request-id" : "515c678c-5b66-4fc0-967f-3b313e942081", + "Date" : "Sun, 06 Mar 2022 06:39:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T073658Z:2cf34dc3-98e9-4a69-bf45-f8530c9e0584", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063920Z:515c678c-5b66-4fc0-967f-3b313e942081", "Expires" : "-1", - "x-ms-request-id" : "2cf34dc3-98e9-4a69-bf45-f8530c9e0584", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjcxNS1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2021-01-01" + "x-ms-request-id" : "515c678c-5b66-4fc0-967f-3b313e942081", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2NTA2MS1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2021-01-01" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg92715Second?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg65061Second?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.10.0-beta.1 (11.0.11; Windows 10; 10.0)", - "x-ms-client-request-id" : "f10d2670-c3ab-4b09-a53e-c450976918c6", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "0139c9e6-fa07-4378-92fa-79aa48cda02b", "Content-Type" : "application/json" }, "Response" : { @@ -995,18 +970,18 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "404", - "x-ms-correlation-request-id" : "74d2be24-a541-4252-806d-d9c36b9dcd85", - "Date" : "Tue, 09 Nov 2021 07:36:58 GMT", + "x-ms-correlation-request-id" : "0736bb56-f940-4069-bf66-d94424f4c1b3", + "Date" : "Sun, 06 Mar 2022 06:39:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "x-ms-failure-cause" : "gateway", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20211109T073659Z:74d2be24-a541-4252-806d-d9c36b9dcd85", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T063920Z:0736bb56-f940-4069-bf66-d94424f4c1b3", "Expires" : "-1", - "x-ms-request-id" : "74d2be24-a541-4252-806d-d9c36b9dcd85", - "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg92715Second' could not be found.\"}}", + "x-ms-request-id" : "0736bb56-f940-4069-bf66-d94424f4c1b3", + "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg65061Second' could not be found.\"}}", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null } ], - "variables" : [ "javacsmrg92715", "javacsmrc36547", "javacsmsa92190" ] + "variables" : [ "javacsmrg65061", "javacsmrc47651", "javacsmsa42968" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/RedisCacheSampleTests.testManageRedisCache.json b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/RedisCacheSampleTests.testManageRedisCache.json index 92da10dae3b41..11e372e4dc39b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/RedisCacheSampleTests.testManageRedisCache.json +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/resources/session-records/RedisCacheSampleTests.testManageRedisCache.json @@ -79,7 +79,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "6eb66c47-bee4-4bc8-9e7d-728b31a1e75c", @@ -104,12 +104,12 @@ "x-ms-request-id" : "b19330a7-a1f2-4d6a-8075-866611814433", "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/Redis/rc339409d6d2b1\",\"location\":\"Central US\",\"name\":\"rc339409d6d2b1\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false},{\"sslPort\":15001,\"isMaster\":false},{\"sslPort\":15002,\"isMaster\":false},{\"sslPort\":15003,\"isMaster\":false},{\"sslPort\":15004,\"isMaster\":false},{\"sslPort\":15005,\"isMaster\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"},\"hostName\":\"rc339409d6d2b1.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "08056c9a-d661-4aaf-855a-a31700af9fe1", @@ -134,12 +134,12 @@ "x-ms-request-id" : "184ae4e8-1e8b-4ad1-9c18-98c7c5b7ccd4", "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/Redis/rc158201a117e0\",\"location\":\"Central US\",\"name\":\"rc158201a117e0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"},\"hostName\":\"rc158201a117e0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "ded79ebe-309d-4be7-9b44-5310c77be259", @@ -164,12 +164,12 @@ "x-ms-request-id" : "8bbefe27-e3e7-462e-bb53-0f776663e4c8", "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/Redis/rc2368913e717b\",\"location\":\"Central US\",\"name\":\"rc2368913e717b\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false},{\"sslPort\":15001,\"isMaster\":false},{\"sslPort\":15002,\"isMaster\":false},{\"sslPort\":15003,\"isMaster\":false},{\"sslPort\":15004,\"isMaster\":false},{\"sslPort\":15005,\"isMaster\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"},\"hostName\":\"rc2368913e717b.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "00947f0a-e6e4-41e0-a5d0-a7adb6c7b114" @@ -197,7 +197,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "b5b0ca0d-7d1d-4d3f-a490-d43e9f38fef0" @@ -225,7 +225,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "40350deb-a016-40a0-85e0-3271a363a26d" @@ -253,7 +253,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "0e302fc1-02cd-4ac1-b23f-01048528b3a5" @@ -281,7 +281,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "635384b9-95ad-41cc-8cfb-a840bf2a29e9" @@ -309,7 +309,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "6f64d169-0400-43a0-8f4d-b9857c67355b" @@ -337,7 +337,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "95252a37-52b3-4c28-aa85-77aad3397435" @@ -365,7 +365,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "42755bce-3915-4ff4-a879-8a7caa541a08" @@ -393,7 +393,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "a469db39-f5c8-4970-be94-cf3e98140b79" @@ -421,7 +421,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "2ce3bf73-db8c-4bbf-b3bd-1ccc3f88814f" @@ -449,7 +449,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "7adcb535-ba4a-4437-b2b7-3568f2873b01" @@ -477,7 +477,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "7821012d-efc7-49b9-9fa3-b8c25e357851" @@ -505,7 +505,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "34739cff-73db-44ca-9b6f-f239894edb3e" @@ -533,7 +533,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "0c30e523-0b6b-4a8e-8529-964563c059c3" @@ -561,7 +561,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "f30852ec-f1cd-4ca0-ad62-deda5566c95f" @@ -589,7 +589,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "b6784467-c119-4291-b501-3ecdd3d0d118" @@ -617,7 +617,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "57943764-6363-4295-acba-3747e7422e51" @@ -645,7 +645,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "dd5e8b7a-c282-4208-8ec0-23cdb1ddb8f7" @@ -673,7 +673,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "642cf096-6952-42ec-81e2-8870ca5ad9ab" @@ -701,7 +701,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "928bafb7-7baf-4a63-9d4b-22d6734e0ada" @@ -729,7 +729,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "192d2060-b560-4b3a-aa94-937c1056ff12" @@ -757,7 +757,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "b344aecd-393d-4692-bf58-929b8cbb477f" @@ -785,7 +785,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "e1764e01-59ec-4a79-8695-3d2808bb892e" @@ -813,7 +813,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "89909d28-c4cc-480f-b867-2bbe55977852" @@ -841,7 +841,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "13f43cd9-92cb-4cae-a333-f6fa4813d19b" @@ -869,7 +869,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "d34d0e5a-ebcc-460b-9ca5-18c14a4dd8f9" @@ -897,7 +897,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "240dae66-5180-493c-8f14-a61f82170c15" @@ -925,7 +925,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "1a1f4e35-6b51-42e9-9cbd-6e6cc539a9cf" @@ -953,7 +953,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "aee12ba9-bfa5-499c-85e2-e5fc6ede4578" @@ -981,7 +981,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "b6278cbe-542a-4f43-aa25-b573a3546d29" @@ -1009,7 +1009,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "89cb3daf-c884-4a58-94b6-a149d3d0b963" @@ -1037,7 +1037,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "b04ffd34-f6d7-4b9c-8ea1-fdbbce0e4552" @@ -1065,7 +1065,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "ece0a59a-0b56-41ad-9fb2-a504180ceb71" @@ -1093,7 +1093,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "1b85065a-dc88-4460-af28-c1f12f6bf3b0" @@ -1121,7 +1121,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "1992581f-f1d3-4e40-8ad4-26ec52ed024d" @@ -1149,7 +1149,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "db030a81-8841-4b75-84c9-421071e53524" @@ -1177,7 +1177,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "faf6fb17-b2bd-429c-b9a1-e7fa0827d53f" @@ -1205,7 +1205,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "68772973-76c9-4004-ad7d-cd6fe30f6a03" @@ -1233,7 +1233,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "65b34d72-17fc-4297-8ac5-332ecae53e2f" @@ -1261,7 +1261,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "4a400392-5e57-4541-8aa0-acf34b06dec0" @@ -1289,7 +1289,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "87de8692-1d70-4cf3-af84-6cb1ee17b3a8" @@ -1317,7 +1317,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "214ec2c5-eedc-4b70-9882-826ba627bb36" @@ -1345,7 +1345,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "6dfd4cad-1b01-4386-ae76-578957c7a3a5" @@ -1373,7 +1373,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "78927960-8b0c-4717-83d5-65e4c383b80f" @@ -1401,7 +1401,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "2303fa34-af97-43d1-9d30-0def8ef24b88" @@ -1429,7 +1429,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "1e7ceea5-89fb-4336-955e-01c6697d537c" @@ -1457,7 +1457,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "0ba7eb5c-5d27-4e26-8683-191a918cff58" @@ -1485,7 +1485,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "b080bae8-70be-42a5-956f-9f7032a14b8f" @@ -1513,7 +1513,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "59e1b015-bf5d-45af-87dd-d8956b6fb346" @@ -1541,7 +1541,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "899de71c-57f4-4012-8e4f-4a70248fd6ca" @@ -1569,7 +1569,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "5bf8aa8b-7cb5-4d9f-9c57-cff69c42e507" @@ -1597,7 +1597,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "9d04f0cb-477e-46f7-8e6e-c2dc97b893ba" @@ -1625,7 +1625,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "901a0ce4-663d-43c3-8f72-e26a82097eef" @@ -1653,7 +1653,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "e204d9ae-e9a4-4062-afd0-a0e1723e7ea4" @@ -1681,7 +1681,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "34adb822-f30c-4aa4-8f89-2a7906e1a765" @@ -1709,7 +1709,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "81dd2f40-9fc3-45ab-9cf6-34d7e02fb506" @@ -1737,7 +1737,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "71ebac4a-dc28-4c28-8e35-038266fe8bb3" @@ -1765,7 +1765,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "25cadb4b-ddda-47e2-9fad-d22bd96e236f" @@ -1793,7 +1793,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "5dae5e85-236f-41fc-b4f2-37fac822de63" @@ -1821,7 +1821,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "767097b6-b73b-4e18-b04d-595fb3ea413e" @@ -1849,7 +1849,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "dfe92447-6769-44b8-b106-696b2df30c6f" @@ -1877,7 +1877,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "20cfe609-e7f8-43f2-8847-895f56177bdf" @@ -1905,7 +1905,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "4944a8bb-fa05-4a4d-a35d-a9c4e729ff4f" @@ -1933,7 +1933,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "873a45a8-f955-4bcc-9c5d-b65fc93040a2" @@ -1961,7 +1961,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "1028b479-78cf-4241-8307-b1e712e80776" @@ -1989,7 +1989,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "50697327-5252-4e3f-b86e-36ef4ba751cc" @@ -2017,7 +2017,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "a995d448-1665-46be-8869-024950c54104" @@ -2045,7 +2045,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "b6003473-7945-433d-85d9-0081473546b2" @@ -2073,7 +2073,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "d315bdad-20c2-4423-a428-b2e81d82fad6" @@ -2101,7 +2101,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "b08bf62f-a81b-4fc7-892d-bac95994bfb0" @@ -2129,7 +2129,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "8c6c936f-4578-49b2-b3a0-2eb9a8856622" @@ -2157,7 +2157,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "0a57d0f2-0842-4a59-a522-63a03917784f" @@ -2185,7 +2185,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "37db3921-3a15-40f8-b6ec-5eeca73ac35c" @@ -2213,7 +2213,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "502d63a6-39a6-4361-9c5c-664fc2a1a13f" @@ -2241,7 +2241,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "ceda6204-affd-488c-9810-02f9395b2f81" @@ -2269,7 +2269,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "ee7c044d-37fe-4cf3-a845-c5e795fbb6e2" @@ -2297,7 +2297,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "378b05ce-7af9-4989-aaa6-2405d882b9b3" @@ -2325,7 +2325,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "ac2d30da-c84f-4986-bc4f-8e6636f1af01" @@ -2353,7 +2353,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "5cbd5155-c1c5-43f8-9b0c-d61648e5deb7" @@ -2381,7 +2381,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "5688bec9-6e91-41e1-9d7d-ae2c24d38a18" @@ -2409,7 +2409,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "c1b9e476-8a19-4682-ad1a-24565d11047d" @@ -2437,7 +2437,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "646695fa-087d-4250-847a-05e43f938009" @@ -2465,7 +2465,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "25b77d3f-a408-4e52-82c1-b14dcf3a57fc" @@ -2493,7 +2493,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "92623f5d-6478-49cf-8e6b-2eee75a9d15a" @@ -2521,7 +2521,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "c59cf9b6-14b7-4d83-9a95-00550f284a13" @@ -2549,7 +2549,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "3a9a3e58-dd70-4ee8-9455-8f5b7f97f048" @@ -2577,7 +2577,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "869da7d7-222a-4831-b5ef-da44dc4d42db" @@ -2605,7 +2605,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "edb921bf-a8f8-4ebe-85d2-61f616e1763e" @@ -2633,7 +2633,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "80b9905f-5e8d-4e8c-8e7b-e3345f222d2c" @@ -2661,7 +2661,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "51568d41-9e08-46d9-8c46-0b84ae86f80c" @@ -2689,7 +2689,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "f67396ae-9346-4180-8ec0-1ef9027918f4" @@ -2717,7 +2717,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-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" : "85708815-9075-4825-8609-b9402cd4363a" @@ -2745,7 +2745,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-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" : "17e28f93-f8c3-480b-8e41-82a26d3b4553" @@ -2773,7 +2773,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "2db887a7-cff5-4127-b737-b7283a4e207d" @@ -2801,7 +2801,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "d33ac0cc-111a-47b0-aae7-f178f7272748" @@ -2829,7 +2829,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "9fb2ddea-90df-44d2-a4d3-77a956cebdc8" @@ -2857,7 +2857,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "d8047a8b-bd0d-4098-a955-dace27798db9" @@ -2885,7 +2885,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "8943b816-e311-40ba-82ba-feb9a99bff44" @@ -2913,7 +2913,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-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" : "ebb1b183-0d2e-4ab3-9e81-d45d9fc62f3f" @@ -2941,7 +2941,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b/patchSchedules?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "5c78834c-6877-41b7-8df8-ee3eede7d1bf", @@ -2970,7 +2970,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1/patchSchedules?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "037de9be-f693-4590-8782-05b6a0e9de01", @@ -2999,7 +2999,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0/listKeys?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0/listKeys?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "9460595c-fb0d-444f-89a3-e991061c29b6", @@ -3028,7 +3028,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0/regenerateKey?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0/regenerateKey?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "fe4fa375-cd6b-4a51-937d-dec7956d49aa", @@ -3057,7 +3057,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "e5349c67-2168-4224-bf95-cc71247ea531", @@ -3086,7 +3086,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1/patchSchedules?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "30c59048-c57d-4615-9552-a2924f8bd868", @@ -3115,7 +3115,7 @@ "Exception" : null }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "658f96f1-dac0-4d41-90cc-d97704010c62", @@ -3144,7 +3144,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "6a0121e6-7461-421c-81e1-678d82f3ab58", @@ -3173,7 +3173,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "7b95c8d8-e16a-4fa6-bf65-f9ea193af641", @@ -3202,7 +3202,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "1086d927-9ed4-4f83-99e7-8ae8bf2054a6", @@ -3231,7 +3231,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "fd655f02-a87d-428c-bd23-ae4e88c2b96b", @@ -3260,7 +3260,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "36b6a6ff-62c0-49f3-9e76-143cd8261cf2", @@ -3289,7 +3289,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "be813e6f-935a-4c04-87be-07e7a79d47cd", @@ -3318,7 +3318,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "847cd591-6954-43c9-b9a1-0a7581268e17", @@ -3347,7 +3347,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "e56858e7-084e-48cd-ac1b-949d0915bf90", @@ -3376,7 +3376,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "1a2c161d-ec2b-4c50-8143-7c31fdfe2196", @@ -3405,7 +3405,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "d844930e-b261-458c-a96e-4e018b07e9fe", @@ -3434,7 +3434,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "142af233-dfb8-4856-9569-44402654e0fe", @@ -3463,7 +3463,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "7d242dcc-6622-4edb-83f7-8534006b1e8e", @@ -3492,7 +3492,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "e48c23e6-5d81-44c5-af61-20c5a30ce127", @@ -3521,7 +3521,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "c61a4b6c-e209-4182-bf12-1aaa19a81cdf", @@ -3550,7 +3550,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "4fd22109-767e-4333-9b0b-2fccdec31ed2", @@ -3579,7 +3579,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "42d99a74-c889-480f-a34a-60e8b3904fb1", @@ -3608,7 +3608,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "09f23e89-cf6c-4923-a210-a0f9bfcd80a8", @@ -3637,7 +3637,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "fd025ed8-f0ed-4297-983a-4e5449bd13e8", @@ -3666,7 +3666,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1/patchSchedules/default?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1/patchSchedules/default?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "cdea7da8-c702-415f-b627-215f5956ef13", @@ -3695,7 +3695,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1/forceReboot?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc339409d6d2b1/forceReboot?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "fe729403-50f6-489b-aec8-97087bd889bb", @@ -3724,7 +3724,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b/patchSchedules?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b/patchSchedules?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "0b834a86-cae8-4ff7-abb7-0ddcfdc9d851", @@ -3753,7 +3753,7 @@ "Exception" : null }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "8070be82-db66-4c8d-b671-d1c9e4b339a0", @@ -3782,7 +3782,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "693d0770-0964-46f0-8e85-03015227988a", @@ -3811,7 +3811,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "0fcd0ef3-4042-4947-aa6e-b13538c6805c", @@ -3840,7 +3840,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "d9e786a4-a4e8-4b01-b196-211805de4705", @@ -3869,7 +3869,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "7aa499c0-5078-47aa-8627-f2e2d1efad4b", @@ -3898,7 +3898,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "98b3de94-4920-4557-9a82-17cf401cc47b", @@ -3927,7 +3927,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "6d8a69ab-bccc-4959-9237-a00a930e6be8", @@ -3956,7 +3956,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "a0f56dba-5055-46da-94d0-b816da40adbe", @@ -3985,7 +3985,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "797c3f3b-0c12-4d2f-8732-61890a900cf9", @@ -4014,7 +4014,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "8ec3c2b7-1bad-4269-999f-cb7cb074bf79", @@ -4043,7 +4043,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "4eb407bb-9984-471d-a554-6e3fe5d52997", @@ -4072,7 +4072,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "c3037882-9375-4888-afa1-d0d67b74b9ba", @@ -4101,7 +4101,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "c28580f9-4182-492b-a76c-549386a7e571", @@ -4130,7 +4130,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "1332d28e-2e7d-4f42-a38b-61edbb5c267b", @@ -4159,7 +4159,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "60b0593a-4e71-4b83-9fe6-d29afdaa58f9", @@ -4188,7 +4188,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "fef4c0c1-c157-47b4-ae65-7aa63adb0b9e", @@ -4217,7 +4217,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "347b8a9a-d6bd-439b-b752-ddd70dfdb357", @@ -4246,7 +4246,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "535ba40e-08af-4a81-8384-501dd492bd38", @@ -4275,7 +4275,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "c3bec3c9-0f65-4919-bfb6-00b803eaffa6", @@ -4304,7 +4304,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "e1179d2b-713a-4e91-96ff-7d341b0eb723", @@ -4333,7 +4333,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "89d90941-7966-4114-818a-550e7e0e53cc", @@ -4362,7 +4362,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b/patchSchedules/default?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b/patchSchedules/default?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "82d4737d-8f8f-45b5-834f-bc0480965511", @@ -4391,7 +4391,7 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b/forceReboot?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc2368913e717b/forceReboot?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "41b18b4d-615a-4f6c-99f5-1826e76fa161", @@ -4420,7 +4420,7 @@ "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc71128564a/providers/Microsoft.Cache/redis/rc158201a117e0?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "362c8390-0a53-40c3-9fe6-bcbeade86ea7", @@ -4443,12 +4443,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "a8a4a8e0-8f0a-4e54-8083-d49dd8a61243", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-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" : "92588579-cb43-4e76-a8ba-3d2dad76e8b4" @@ -4470,12 +4470,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "e7feed58-c2c7-4398-b8a2-aa1825a2f9ad", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-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" : "1200f16f-0eb6-466c-8d92-c98aaaddc075" @@ -4497,12 +4497,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "75a35d03-65d2-42d2-9a3e-0cae2a470564", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-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" : "12628769-9720-4253-ab54-957e56bb239b" @@ -4524,12 +4524,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "f0a3d63e-6fd9-4212-94bf-d57d6dce8834", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-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" : "e8803916-93f1-45fb-b1be-4f7939bd5905" @@ -4551,12 +4551,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "1d2d956e-ead0-4b5f-91bd-489d4c37c3ca", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-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" : "3a76d1ce-3d69-43cd-99d5-8b2a6dd05c8a" @@ -4578,12 +4578,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "d010d7bb-b7ab-4cb6-b78a-f398f718cf54", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-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" : "198c00c8-d70a-47a8-88c5-00ac2b35493c" @@ -4605,12 +4605,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "899fb962-34bf-4f52-b50b-447cb91f0a0a", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-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" : "b593e2a1-16fa-4ba5-84a4-3ea80a432398" @@ -4632,12 +4632,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "4718aa60-0c40-4966-85c2-a2a30ec8fd65", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-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" : "fc3488f2-b069-46a5-883d-b64b4ee645ef" @@ -4659,12 +4659,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "0ce57389-e081-431a-903f-137eaca65575", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-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" : "e1dd6778-025d-49c5-8ae0-24ee819b1a31" @@ -4686,12 +4686,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "1e249c5f-8812-4f16-9d75-3be951e86445", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-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" : "7605e4b7-df60-49d0-a213-038dc0098d52" @@ -4713,12 +4713,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "047d1b0e-2184-4506-955b-e96b86bd6417", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-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" : "93e45095-4932-43bf-9873-ac84ec94a16f" @@ -4740,12 +4740,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "f382f951-dfcd-4659-9841-cd60aec6ce88", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/a8a4a8e0-8f0a-4e54-8083-d49dd8a61243?api-version=2021-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" : "b459fccf-5dc7-4914-bd16-92fecd0bf35a" diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/AsyncOperationStatusGetSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/AsyncOperationStatusGetSamples.java new file mode 100644 index 0000000000000..5132d89ca1c19 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/AsyncOperationStatusGetSamples.java @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for AsyncOperationStatus Get. */ +public final class AsyncOperationStatusGetSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheAsyncOperationStatus.json + */ + /** + * Sample code: RedisCacheAsyncOperationStatus. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheAsyncOperationStatus(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getAsyncOperationStatus() + .getWithResponse("East US", "c7ba2bf5-5939-4d79-b037-2964ccf097da", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesCreateOrUpdateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesCreateOrUpdateSamples.java new file mode 100644 index 0000000000000..648ff46f858ba --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesCreateOrUpdateSamples.java @@ -0,0 +1,33 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.fluent.models.RedisFirewallRuleInner; + +/** Samples for FirewallRules CreateOrUpdate. */ +public final class FirewallRulesCreateOrUpdateSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheFirewallRuleCreate.json + */ + /** + * Sample code: RedisCacheFirewallRuleCreate. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheFirewallRuleCreate(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getFirewallRules() + .createOrUpdateWithResponse( + "rg1", + "cache1", + "rule1", + new RedisFirewallRuleInner().withStartIp("192.168.1.1").withEndIp("192.168.1.4"), + Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesDeleteSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesDeleteSamples.java new file mode 100644 index 0000000000000..fd29beb9e7434 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesDeleteSamples.java @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for FirewallRules Delete. */ +public final class FirewallRulesDeleteSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheFirewallRuleDelete.json + */ + /** + * Sample code: RedisCacheFirewallRuleDelete. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheFirewallRuleDelete(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getFirewallRules() + .deleteWithResponse("rg1", "cache1", "rule1", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesGetSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesGetSamples.java new file mode 100644 index 0000000000000..3d0de2d7191d3 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesGetSamples.java @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for FirewallRules Get. */ +public final class FirewallRulesGetSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheFirewallRuleGet.json + */ + /** + * Sample code: RedisCacheFirewallRuleGet. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheFirewallRuleGet(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getFirewallRules() + .getWithResponse("rg1", "cache1", "rule1", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesListSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesListSamples.java new file mode 100644 index 0000000000000..dd3915aa51655 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/FirewallRulesListSamples.java @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for FirewallRules List. */ +public final class FirewallRulesListSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheFirewallRulesList.json + */ + /** + * Sample code: RedisCacheFirewallRulesList. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheFirewallRulesList(com.azure.resourcemanager.AzureResourceManager azure) { + azure.redisCaches().manager().serviceClient().getFirewallRules().list("rg1", "cache1", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerCreateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerCreateSamples.java new file mode 100644 index 0000000000000..ea80d8615a15a --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerCreateSamples.java @@ -0,0 +1,38 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.models.RedisLinkedServerCreateParameters; +import com.azure.resourcemanager.redis.models.ReplicationRole; + +/** Samples for LinkedServer Create. */ +public final class LinkedServerCreateSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheLinkedServer_Create.json + */ + /** + * Sample code: LinkedServer_Create. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void linkedServerCreate(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getLinkedServers() + .create( + "rg1", + "cache1", + "cache2", + new RedisLinkedServerCreateParameters() + .withLinkedRedisCacheId( + "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/Redis/cache2") + .withLinkedRedisCacheLocation("West US") + .withServerRole(ReplicationRole.SECONDARY), + Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerDeleteSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerDeleteSamples.java new file mode 100644 index 0000000000000..635aaa88612e2 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerDeleteSamples.java @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for LinkedServer Delete. */ +public final class LinkedServerDeleteSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheLinkedServer_Delete.json + */ + /** + * Sample code: LinkedServerDelete. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void linkedServerDelete(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getLinkedServers() + .deleteWithResponse("rg1", "cache1", "cache2", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerGetSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerGetSamples.java new file mode 100644 index 0000000000000..c4f687a26879d --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerGetSamples.java @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for LinkedServer Get. */ +public final class LinkedServerGetSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheLinkedServer_Get.json + */ + /** + * Sample code: LinkedServer_Get. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void linkedServerGet(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getLinkedServers() + .getWithResponse("rg1", "cache1", "cache2", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerListSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerListSamples.java new file mode 100644 index 0000000000000..8d0ac6f2f980b --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/LinkedServerListSamples.java @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for LinkedServer List. */ +public final class LinkedServerListSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheLinkedServer_List.json + */ + /** + * Sample code: LinkedServer_List. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void linkedServerList(com.azure.resourcemanager.AzureResourceManager azure) { + azure.redisCaches().manager().serviceClient().getLinkedServers().list("rg1", "cache1", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesCreateOrUpdateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesCreateOrUpdateSamples.java new file mode 100644 index 0000000000000..c5d687cd7aea5 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesCreateOrUpdateSamples.java @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.fluent.models.RedisPatchScheduleInner; +import com.azure.resourcemanager.redis.models.DayOfWeek; +import com.azure.resourcemanager.redis.models.DefaultName; +import com.azure.resourcemanager.redis.models.ScheduleEntry; +import java.time.Duration; +import java.util.Arrays; + +/** Samples for PatchSchedules CreateOrUpdate. */ +public final class PatchSchedulesCreateOrUpdateSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCachePatchSchedulesCreateOrUpdate.json + */ + /** + * Sample code: RedisCachePatchSchedulesCreateOrUpdate. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCachePatchSchedulesCreateOrUpdate(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getPatchSchedules() + .createOrUpdateWithResponse( + "rg1", + "cache1", + DefaultName.DEFAULT, + new RedisPatchScheduleInner() + .withScheduleEntries( + Arrays + .asList( + new ScheduleEntry() + .withDayOfWeek(DayOfWeek.MONDAY) + .withStartHourUtc(12) + .withMaintenanceWindow(Duration.parse("PT5H")), + new ScheduleEntry().withDayOfWeek(DayOfWeek.TUESDAY).withStartHourUtc(12))), + Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesDeleteSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesDeleteSamples.java new file mode 100644 index 0000000000000..0bc898b8ea64b --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesDeleteSamples.java @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.models.DefaultName; + +/** Samples for PatchSchedules Delete. */ +public final class PatchSchedulesDeleteSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCachePatchSchedulesDelete.json + */ + /** + * Sample code: RedisCachePatchSchedulesDelete. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCachePatchSchedulesDelete(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getPatchSchedules() + .deleteWithResponse("rg1", "cache1", DefaultName.DEFAULT, Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesGetSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesGetSamples.java new file mode 100644 index 0000000000000..f1421d8717eb3 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesGetSamples.java @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.models.DefaultName; + +/** Samples for PatchSchedules Get. */ +public final class PatchSchedulesGetSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCachePatchSchedulesGet.json + */ + /** + * Sample code: RedisCachePatchSchedulesGet. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCachePatchSchedulesGet(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getPatchSchedules() + .getWithResponse("rg1", "cache1", DefaultName.DEFAULT, Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesListByRedisResourceSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesListByRedisResourceSamples.java new file mode 100644 index 0000000000000..36aa3953ac5ac --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PatchSchedulesListByRedisResourceSamples.java @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for PatchSchedules ListByRedisResource. */ +public final class PatchSchedulesListByRedisResourceSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCachePatchSchedulesList.json + */ + /** + * Sample code: RedisCachePatchSchedulesList. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCachePatchSchedulesList(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getPatchSchedules() + .listByRedisResource("rg1", "cache1", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsDeleteSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsDeleteSamples.java new file mode 100644 index 0000000000000..0affe1594577c --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsDeleteSamples.java @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for PrivateEndpointConnections Delete. */ +public final class PrivateEndpointConnectionsDeleteSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheDeletePrivateEndpointConnection.json + */ + /** + * Sample code: RedisCacheDeletePrivateEndpointConnection. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheDeletePrivateEndpointConnection(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getPrivateEndpointConnections() + .deleteWithResponse("rgtest01", "cachetest01", "pectest01", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsGetSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsGetSamples.java new file mode 100644 index 0000000000000..190394968b9fb --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsGetSamples.java @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for PrivateEndpointConnections Get. */ +public final class PrivateEndpointConnectionsGetSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheGetPrivateEndpointConnection.json + */ + /** + * Sample code: RedisCacheGetPrivateEndpointConnection. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheGetPrivateEndpointConnection(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getPrivateEndpointConnections() + .getWithResponse("rgtest01", "cachetest01", "pectest01", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsListSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsListSamples.java new file mode 100644 index 0000000000000..f25601fd9ff8f --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsListSamples.java @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for PrivateEndpointConnections List. */ +public final class PrivateEndpointConnectionsListSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheListPrivateEndpointConnections.json + */ + /** + * Sample code: RedisCacheListPrivateEndpointConnection. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheListPrivateEndpointConnection(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getPrivateEndpointConnections() + .list("rgtest01", "cachetest01", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsPutSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsPutSamples.java new file mode 100644 index 0000000000000..c845020d8f76c --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateEndpointConnectionsPutSamples.java @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.fluent.models.PrivateEndpointConnectionInner; +import com.azure.resourcemanager.redis.models.PrivateEndpointServiceConnectionStatus; +import com.azure.resourcemanager.redis.models.PrivateLinkServiceConnectionState; + +/** Samples for PrivateEndpointConnections Put. */ +public final class PrivateEndpointConnectionsPutSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCachePutPrivateEndpointConnection.json + */ + /** + * Sample code: RedisCachePutPrivateEndpointConnection. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCachePutPrivateEndpointConnection(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getPrivateEndpointConnections() + .put( + "rgtest01", + "cachetest01", + "pectest01", + new PrivateEndpointConnectionInner() + .withPrivateLinkServiceConnectionState( + new PrivateLinkServiceConnectionState() + .withStatus(PrivateEndpointServiceConnectionStatus.APPROVED) + .withDescription("Auto-Approved")), + Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateLinkResourcesListByRedisCacheSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateLinkResourcesListByRedisCacheSamples.java new file mode 100644 index 0000000000000..b034700994da1 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/PrivateLinkResourcesListByRedisCacheSamples.java @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for PrivateLinkResources ListByRedisCache. */ +public final class PrivateLinkResourcesListByRedisCacheSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheListPrivateLinkResources.json + */ + /** + * Sample code: StorageAccountListPrivateLinkResources. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void storageAccountListPrivateLinkResources(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getPrivateLinkResources() + .listByRedisCache("rgtest01", "cacheTest01", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisCheckNameAvailabilitySamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisCheckNameAvailabilitySamples.java new file mode 100644 index 0000000000000..a111b6a5700b4 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisCheckNameAvailabilitySamples.java @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.models.CheckNameAvailabilityParameters; + +/** Samples for Redis CheckNameAvailability. */ +public final class RedisCheckNameAvailabilitySamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheCheckNameAvailability.json + */ + /** + * Sample code: RedisCacheCheckNameAvailability. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheCheckNameAvailability(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getRedis() + .checkNameAvailabilityWithResponse( + new CheckNameAvailabilityParameters().withName("cacheName").withType("Microsoft.Cache/Redis"), + Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisCreateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisCreateSamples.java new file mode 100644 index 0000000000000..1c328269af0a1 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisCreateSamples.java @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.models.RedisCommonPropertiesRedisConfiguration; +import com.azure.resourcemanager.redis.models.RedisCreateParameters; +import com.azure.resourcemanager.redis.models.Sku; +import com.azure.resourcemanager.redis.models.SkuFamily; +import com.azure.resourcemanager.redis.models.SkuName; +import com.azure.resourcemanager.redis.models.TlsVersion; +import java.util.Arrays; +import java.util.HashMap; +import java.util.Map; + +/** Samples for Redis Create. */ +public final class RedisCreateSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheCreate.json + */ + /** + * Sample code: RedisCacheCreate. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheCreate(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getRedis() + .create( + "rg1", + "cache1", + new RedisCreateParameters() + .withZones(Arrays.asList("1")) + .withLocation("West US") + .withSku(new Sku().withName(SkuName.PREMIUM).withFamily(SkuFamily.P).withCapacity(1)) + .withSubnetId( + "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1") + .withStaticIp("192.168.0.5") + .withRedisConfiguration( + new RedisCommonPropertiesRedisConfiguration() + .withMaxmemoryPolicy("allkeys-lru") + .withAdditionalProperties(mapOf())) + .withRedisVersion("4") + .withEnableNonSslPort(true) + .withReplicasPerPrimary(2) + .withShardCount(2) + .withMinimumTlsVersion(TlsVersion.ONE_TWO), + Context.NONE); + } + + @SuppressWarnings("unchecked") + private static Map mapOf(Object... inputs) { + Map map = new HashMap<>(); + for (int i = 0; i < inputs.length; i += 2) { + String key = (String) inputs[i]; + T value = (T) inputs[i + 1]; + map.put(key, value); + } + return map; + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisDeleteSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisDeleteSamples.java new file mode 100644 index 0000000000000..53cf388b046e4 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisDeleteSamples.java @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for Redis Delete. */ +public final class RedisDeleteSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheDelete.json + */ + /** + * Sample code: RedisCacheDelete. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheDelete(com.azure.resourcemanager.AzureResourceManager azure) { + azure.redisCaches().manager().serviceClient().getRedis().delete("rg1", "cache1", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisExportDataSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisExportDataSamples.java new file mode 100644 index 0000000000000..a349e147a186a --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisExportDataSamples.java @@ -0,0 +1,35 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.models.ExportRdbParameters; + +/** Samples for Redis ExportData. */ +public final class RedisExportDataSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheExport.json + */ + /** + * Sample code: RedisCacheExport. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheExport(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getRedis() + .exportData( + "rg1", + "cache1", + new ExportRdbParameters() + .withFormat("RDB") + .withPrefix("datadump1") + .withContainer("https://contosostorage.blob.core.window.net/urltoBlobContainer?sasKeyParameters"), + Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisForceRebootSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisForceRebootSamples.java new file mode 100644 index 0000000000000..d157118e787a0 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisForceRebootSamples.java @@ -0,0 +1,37 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.models.RebootType; +import com.azure.resourcemanager.redis.models.RedisRebootParameters; +import java.util.Arrays; + +/** Samples for Redis ForceReboot. */ +public final class RedisForceRebootSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheForceReboot.json + */ + /** + * Sample code: RedisCacheForceReboot. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheForceReboot(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getRedis() + .forceRebootWithResponse( + "rg1", + "cache1", + new RedisRebootParameters() + .withRebootType(RebootType.ALL_NODES) + .withShardId(0) + .withPorts(Arrays.asList(13000, 15001)), + Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisGetByResourceGroupSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisGetByResourceGroupSamples.java new file mode 100644 index 0000000000000..666e6785dfedd --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisGetByResourceGroupSamples.java @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for Redis GetByResourceGroup. */ +public final class RedisGetByResourceGroupSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheGet.json + */ + /** + * Sample code: RedisCacheGet. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheGet(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getRedis() + .getByResourceGroupWithResponse("rg1", "cache1", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisImportDataSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisImportDataSamples.java new file mode 100644 index 0000000000000..33405da23ddcf --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisImportDataSamples.java @@ -0,0 +1,35 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.models.ImportRdbParameters; +import java.util.Arrays; + +/** Samples for Redis ImportData. */ +public final class RedisImportDataSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheImport.json + */ + /** + * Sample code: RedisCacheImport. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheImport(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getRedis() + .importData( + "rg1", + "cache1", + new ImportRdbParameters() + .withFormat("RDB") + .withFiles(Arrays.asList("http://fileuris.contoso.com/pathtofile1")), + Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListByResourceGroupSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListByResourceGroupSamples.java new file mode 100644 index 0000000000000..7af73ffc33048 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListByResourceGroupSamples.java @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for Redis ListByResourceGroup. */ +public final class RedisListByResourceGroupSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheListByResourceGroup.json + */ + /** + * Sample code: RedisCacheListByResourceGroup. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheListByResourceGroup(com.azure.resourcemanager.AzureResourceManager azure) { + azure.redisCaches().manager().serviceClient().getRedis().listByResourceGroup("rg1", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListKeysSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListKeysSamples.java new file mode 100644 index 0000000000000..148bcbbfb34c6 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListKeysSamples.java @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for Redis ListKeys. */ +public final class RedisListKeysSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheListKeys.json + */ + /** + * Sample code: RedisCacheListKeys. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheListKeys(com.azure.resourcemanager.AzureResourceManager azure) { + azure.redisCaches().manager().serviceClient().getRedis().listKeysWithResponse("rg1", "cache1", Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListSamples.java new file mode 100644 index 0000000000000..3f331f2985565 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListSamples.java @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for Redis List. */ +public final class RedisListSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheList.json + */ + /** + * Sample code: RedisCacheList. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheList(com.azure.resourcemanager.AzureResourceManager azure) { + azure.redisCaches().manager().serviceClient().getRedis().list(Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListUpgradeNotificationsSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListUpgradeNotificationsSamples.java new file mode 100644 index 0000000000000..8c82e89228e29 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisListUpgradeNotificationsSamples.java @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; + +/** Samples for Redis ListUpgradeNotifications. */ +public final class RedisListUpgradeNotificationsSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheListUpgradeNotifications.json + */ + /** + * Sample code: RedisCacheListUpgradeNotifications. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheListUpgradeNotifications(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getRedis() + .listUpgradeNotifications("rg1", "cache1", 5000.0, Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisRegenerateKeySamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisRegenerateKeySamples.java new file mode 100644 index 0000000000000..9d472c28122eb --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisRegenerateKeySamples.java @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.models.RedisKeyType; +import com.azure.resourcemanager.redis.models.RedisRegenerateKeyParameters; + +/** Samples for Redis RegenerateKey. */ +public final class RedisRegenerateKeySamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheRegenerateKey.json + */ + /** + * Sample code: RedisCacheRegenerateKey. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheRegenerateKey(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getRedis() + .regenerateKeyWithResponse( + "rg1", "cache1", new RedisRegenerateKeyParameters().withKeyType(RedisKeyType.PRIMARY), Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisUpdateSamples.java b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisUpdateSamples.java new file mode 100644 index 0000000000000..d4403d44e552f --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/redis/generated/RedisUpdateSamples.java @@ -0,0 +1,32 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +// Code generated by Microsoft (R) AutoRest Code Generator. + +package com.azure.resourcemanager.redis.generated; + +import com.azure.core.util.Context; +import com.azure.resourcemanager.redis.models.RedisUpdateParameters; + +/** Samples for Redis Update. */ +public final class RedisUpdateSamples { + /* + * x-ms-original-file: specification/redis/resource-manager/Microsoft.Cache/stable/2021-06-01/examples/RedisCacheUpdate.json + */ + /** + * Sample code: RedisCacheUpdate. + * + * @param azure The entry point for accessing resource management APIs in Azure. + */ + public static void redisCacheUpdate(com.azure.resourcemanager.AzureResourceManager azure) { + azure + .redisCaches() + .manager() + .serviceClient() + .getRedis() + .updateWithResponse( + "rg1", + "cache1", + new RedisUpdateParameters().withEnableNonSslPort(true).withReplicasPerPrimary(2), + Context.NONE); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/PrivateLinkTests.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/PrivateLinkTests.java index 651c36035b8aa..a67a42ea568ee 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/PrivateLinkTests.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/PrivateLinkTests.java @@ -53,6 +53,7 @@ import java.io.File; import java.nio.charset.StandardCharsets; import java.nio.file.Files; +import java.time.Duration; import java.time.temporal.ChronoUnit; import java.util.Collections; import java.util.HashMap; @@ -455,7 +456,6 @@ public void testPrivateEndpointAKS() { } @Test - @Disabled("invalid response of list private endpoint connections") public void testPrivateEndpointRedis() { String redisName = generateRandomResourceName("redis", 10); PrivateLinkSubResourceName subResourceName = PrivateLinkSubResourceName.REDIS_CACHE; @@ -569,6 +569,12 @@ private = 0 && !"Approved".equals(privateEndpoint.privateLinkServiceConnections().get(pecName).state().status())) { + ResourceManagerUtils.sleep(Duration.ofSeconds(30)); + privateEndpoint.refresh(); + retry--; + } Assertions.assertEquals("Approved", privateEndpoint.privateLinkServiceConnections().get(pecName).state().status()); } diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testRedis.json b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testRedis.json index 8ca0b8f17b8ce..5b8d0f1647f58 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testRedis.json +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/AzureResourceManagerTests.testRedis.json @@ -1,7 +1,7 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redis?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redis?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "a11ccb16-8cab-47ad-aaa1-995da2ac388a", @@ -30,7 +30,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redis?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redis?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "594a430f-eb97-4068-8ffd-f88d7a07c50a", @@ -85,7 +85,7 @@ "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "369e0600-7d0c-4239-97b3-32719715219a", @@ -110,12 +110,12 @@ "x-ms-request-id" : "24c2b49d-0324-404e-83ca-d29309bdefb7", "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/Redis/redis32345\",\"location\":\"East US\",\"name\":\"redis32345\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.0.14\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false},{\"sslPort\":15001,\"isMaster\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":{\"primaryKey\":\"***REMOVED***\",\"secondaryKey\":\"***REMOVED***\"},\"hostName\":\"redis32345.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "Content-Type" : "application/json; charset=utf-8", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "ac28846b-af9c-4f68-87a8-3161c980a665" @@ -143,7 +143,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "1a7b9181-7739-4335-8e90-c9c38b33653d" @@ -171,7 +171,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "ed717384-da37-4ab2-89f3-4e84ec544239" @@ -199,7 +199,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "6daa2c50-2150-48e8-a324-04c27b00e6d2" @@ -227,7 +227,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "71a70224-06d4-4bf3-ba23-b217c91c53be" @@ -255,7 +255,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "ac02cbea-3914-4201-a664-2ffb3f5b3d02" @@ -283,7 +283,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "9a4ab0d7-d219-4a87-ae6f-5b47e17c5223" @@ -311,7 +311,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "a7521fc5-9f99-4f3c-a153-ec203c54636c" @@ -339,7 +339,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "50c4aac1-992b-4f04-bf2e-681b55165d19" @@ -367,7 +367,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "00b161ef-f2f4-41ea-83c4-19ff45b736f4" @@ -395,7 +395,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "43e04432-908d-49d8-a371-9a87fe4ccdca" @@ -423,7 +423,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "1bffb80c-3d8b-4cdd-9391-a2502dcb31fa" @@ -451,7 +451,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "1b9433dc-6929-4adb-a357-3882d3f62805" @@ -479,7 +479,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "4e56a289-b406-4eb6-89f7-6603b7aae45b" @@ -507,7 +507,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "84378dbf-e069-4b4c-8803-ef220b0d9d9d" @@ -535,7 +535,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "5afc4947-0b71-4b65-bdc5-d69ea6223e57" @@ -563,7 +563,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "1752faa6-d663-4b32-a98d-fbef6f894e9b" @@ -591,7 +591,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "fcda31e6-03bd-4a2e-bd54-d1e465521818" @@ -619,7 +619,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "53fdedf9-43b7-47f1-a354-33758aec7fa7" @@ -647,7 +647,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "f56d0090-2dff-45ae-a199-5ef8d42fa12d" @@ -675,7 +675,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "da14de62-2593-417c-afff-082514f71a88" @@ -703,7 +703,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "4460d623-d75a-4859-a9ea-636d5c4d8b50" @@ -731,7 +731,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "388a9864-35d2-4513-8db7-2c1fe1b26d3e" @@ -759,7 +759,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "c41a173b-b04a-4562-8afb-8896820cd8d3" @@ -787,7 +787,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "0dfa4883-3938-4aab-b32c-c03a7ca1ae2c" @@ -815,7 +815,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "4f6e43c0-dfc8-4502-b5ff-0dd85b401498" @@ -843,7 +843,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "982811b7-4f61-4932-83e4-ab6c7e7ec5f4" @@ -871,7 +871,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "24b21f4f-9479-4f17-b7a7-7160a28174a8" @@ -899,7 +899,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "561a21e6-cdf1-4017-bc0f-090973db2f44" @@ -927,7 +927,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "b8ea1af4-cb5c-4a4a-a1bc-c01d1e45da1e" @@ -955,7 +955,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "b847d407-1b20-49bb-9532-fd96f62ed622" @@ -983,7 +983,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "7f31464e-a72e-4a6e-8739-0098da57b909" @@ -1011,7 +1011,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "29ddf28b-c4a7-4cd8-a433-ef074fac78e5" @@ -1039,7 +1039,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "0d8529d8-c5bd-458e-99da-6509c091408e" @@ -1067,7 +1067,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "d9551fb8-741f-4843-b0e8-868b8ee67110" @@ -1095,7 +1095,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "d71cc0ec-f568-4a95-a9ef-1e5f16331393" @@ -1123,7 +1123,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "0888ec3a-7248-4e90-9650-aa568f352c68" @@ -1151,7 +1151,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "3f5ad824-3ec1-485e-aa63-1be892daef55" @@ -1179,7 +1179,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "14dfb4bc-3023-46df-8baa-a1c6c2570033" @@ -1207,7 +1207,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-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" : "fbf0df01-6bd0-45f2-9b4a-469d27de5f6a" @@ -1235,7 +1235,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redis?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redis?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "fdc8fba9-9831-49d5-93a1-947dcf12ad93", @@ -1262,7 +1262,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redis?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/redis?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "902a2013-12ca-4de9-8b17-10598d333fee", @@ -1289,7 +1289,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "920b8dd8-00a8-4222-b9a4-be1559d00a42", @@ -1318,7 +1318,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "c64b144f-840a-415f-934f-03a18ff29acd", @@ -1347,7 +1347,7 @@ "Exception" : null }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "3d10f0a6-ce85-45eb-8e85-a153102cc497", @@ -1376,7 +1376,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "a974317c-974b-4ea5-a477-6a3d033abe9e", @@ -1405,7 +1405,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "614e7bd4-19c0-478b-8643-8e561ca15a91", @@ -1434,7 +1434,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "70246f96-3d3d-4a9d-a892-3279d289000e", @@ -1463,7 +1463,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "ab668ef0-c083-4023-8339-b89a1b1b06d2", @@ -1492,7 +1492,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "eafb7503-e096-44da-a1cb-aa58359884da", @@ -1521,7 +1521,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "31445a9e-5dfa-4194-a88e-bd0987d0849c", @@ -1550,7 +1550,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "2af8a5ec-68a0-4b00-9670-68775fb3e4b4", @@ -1579,7 +1579,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "7066c8fd-8a49-47ff-b679-b0e224808354", @@ -1608,7 +1608,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "1df943ed-53bf-48e2-b9e5-5480524fe28d", @@ -1637,7 +1637,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "97443cb9-be8e-4bf4-99e8-d6b052b3fd9e", @@ -1666,7 +1666,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "ff275ade-376a-4038-9a2f-d0dfdc3c6208", @@ -1695,7 +1695,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "1bb44ff8-02f3-4703-825e-bbe0d8415b5f", @@ -1724,7 +1724,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "091f120b-e651-4e01-8ed7-df94eb1a38ec", @@ -1753,7 +1753,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "a6fa690e-67b6-41a0-a824-af70c816e9a6", @@ -1782,7 +1782,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "8c46660b-86b0-47b0-9697-f9ee733aedbd", @@ -1811,7 +1811,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "8eb0ec3d-390d-4946-9185-808d1a5a5fbb", @@ -1840,7 +1840,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "1699f3ad-140a-493d-9c16-df9dec283bee", @@ -1869,7 +1869,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "1e788a85-5fb5-4176-94aa-08a71ccb7fc1", @@ -1898,7 +1898,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "5451dcc6-733f-4af1-9744-d29e78c6ae88", @@ -1927,7 +1927,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "dbeb7885-cb11-4cbd-a550-8619b4a8029a", @@ -1956,7 +1956,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "c0102eaf-99c4-44a0-9f32-f1ddd7bbd127", @@ -1985,7 +1985,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "312db281-7d84-4efc-8a21-347372767794", @@ -2014,7 +2014,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "db1192f7-959c-49fc-91a8-4d6884c4ced1", @@ -2043,7 +2043,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "67a52272-abf4-4ee8-9834-1915349a7e29", @@ -2072,7 +2072,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "948a3a81-84cf-46e5-8d7c-aaa1409bfd7d", @@ -2101,7 +2101,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "0b6f0c1f-8d0e-4111-8ee5-621a4a847fe0", @@ -2130,7 +2130,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "1e4b6d67-6d98-4bb7-b27d-58518cdf7072", @@ -2159,7 +2159,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "61090a90-2cc1-4603-8b39-7db5dbbffe8e", @@ -2188,7 +2188,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "6ff93ca6-69d7-46c4-8cb9-9c262bc55ede", @@ -2217,7 +2217,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "105f553f-4d37-4663-96d2-130dd31019b2", @@ -2246,7 +2246,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "1d50c278-b8ef-4c56-9356-3098066549a3", @@ -2275,7 +2275,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "1f096d63-2e9d-47f4-84ff-909c38a64fa0", @@ -2304,7 +2304,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "fb0ae87a-a576-4aa8-84cb-8e5b817bd02f", @@ -2333,7 +2333,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "5576ca8f-0106-48d0-a8de-0001de8c0109", @@ -2362,7 +2362,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "1b93f37e-94e6-4af5-8f5d-0cd1dd898f3b", @@ -2391,7 +2391,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "558feebf-5395-4f2d-a108-64e1d8b5c2a4", @@ -2420,7 +2420,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "127775ba-e352-40a9-9d40-b0a99244309f", @@ -2449,7 +2449,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "9c230fac-cd2a-4e49-bd5f-7b5823f10832", @@ -2478,7 +2478,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "a3c5655b-6df8-4558-9608-bf2e6240385d", @@ -2507,7 +2507,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "ea97ea5c-be89-481d-bca6-4b777aa2feaf", @@ -2536,7 +2536,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "023d70e4-362b-44ff-8ac8-7c6c2286b573", @@ -2565,7 +2565,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "91cd5a8b-32cb-46f5-af58-37fa8adc2653", @@ -2594,7 +2594,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "9f078c9e-bc20-4d63-a18e-29249fa6e7d3", @@ -2623,7 +2623,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "403d9151-b0d4-43ff-a4a4-6f70804dbe2b", @@ -2652,7 +2652,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "ddba8c75-98a7-4d27-a432-ae54d9943d6c", @@ -2681,7 +2681,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "aeab8630-2382-4769-9ad5-048450a0c340", @@ -2710,7 +2710,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "b474bf6d-3fcd-4f09-8667-9668a274cc7e", @@ -2739,7 +2739,7 @@ "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "cccf5847-14b8-40db-9ff0-061abec7a129", @@ -2768,7 +2768,7 @@ "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis32345group/providers/Microsoft.Cache/redis/redis32345?api-version=2021-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.2.0-beta.1 (15.0.1; Windows 10; 10.0)", "x-ms-client-request-id" : "c3b7e860-28e9-4cac-9951-111e5da76009", @@ -2791,12 +2791,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "2552e494-e5f1-4e0b-8327-7c111699a857", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "03562771-2b5d-406e-a4e5-8c372a351a4b" @@ -2818,12 +2818,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "3ae1cdaf-3600-4319-8f92-fa9f267b7b23", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "142cf18f-11e8-4460-b299-3518734ba6f2" @@ -2845,12 +2845,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "60b57075-db43-4c1e-9cfb-7d263bb6a66f", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "69620d01-24d9-4f13-afa0-f8a7d0f875af" @@ -2872,12 +2872,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "46d5f84f-4b03-41a7-94b4-9af543a110ed", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "c3d656bf-41d8-43e8-8e17-e27396cc0736" @@ -2899,12 +2899,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "185b1268-7b49-48c2-a3e1-a1b02c5d7974", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "23eddf90-57be-4714-b412-7c87e4ce6214" @@ -2926,12 +2926,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "78f684ed-0aa9-4bc3-b6ab-342f5588a09c", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "f4010193-4eee-4686-a5c7-68df7838ce92" @@ -2953,12 +2953,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "ea6bcd06-0e44-45d9-a143-4aed76e23679", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "af1648f3-a129-4312-bb2a-33d6f7054f3b" @@ -2980,12 +2980,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "4cfd7d43-8017-49fd-a818-75e3514fd4a4", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "fa522c86-8cc1-40aa-9113-e06d6a30d445" @@ -3007,12 +3007,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "5ae8efe6-355b-4c11-9243-c30a93c81940", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "ae715f49-6a4e-4bcc-8e2d-657166662e71" @@ -3034,12 +3034,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "b3127f0f-4a13-42be-96cb-1f7dc54a273d", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "28fc212f-dd75-4765-a4f3-5033cbe7c8c6" @@ -3061,12 +3061,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "26ce6fb6-5b38-4f9f-906d-0fb63595f94d", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "c7fe1c68-6aba-42ba-a6cf-c9e3888241e3" @@ -3088,12 +3088,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "b8f80683-27b3-4ac7-83ce-c09294a730b4", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "72622a4c-8709-450d-b188-a737c0a996ac" @@ -3115,12 +3115,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "62f438b4-3cff-4c5b-b1f6-4732fe664044", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "b5948d4b-992e-48e3-97c4-68466acb248b" @@ -3142,12 +3142,12 @@ "Expires" : "-1", "Content-Length" : "0", "x-ms-request-id" : "12d0942a-c3fd-4ea0-97b5-560cf5122fa7", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01" + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-06-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2020-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/2552e494-e5f1-4e0b-8327-7c111699a857?api-version=2021-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" : "03ab7f09-9030-4716-9b18-d2932ca8655f" diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/PrivateLinkTests.testPrivateEndpointRedis.json b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/PrivateLinkTests.testPrivateEndpointRedis.json new file mode 100644 index 0000000000000..0e6246be375fa --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/resources/session-records/PrivateLinkTests.testPrivateEndpointRedis.json @@ -0,0 +1,1195 @@ +{ + "networkCallRecords" : [ { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg39524?api-version=2021-01-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "af8111a3-7b31-40dc-b96a-b942e6264ef9", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "225", + "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" : "2a2c39bf-3da5-4efb-89e3-87f36bd21da5", + "Date" : "Sun, 06 Mar 2022 06:04:05 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060406Z:2a2c39bf-3da5-4efb-89e3-87f36bd21da5", + "Expires" : "-1", + "x-ms-request-id" : "2a2c39bf-3da5-4efb-89e3-87f36bd21da5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524\",\"name\":\"javacsmrg39524\",\"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/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e0381b1a-f568-40e2-a3d0-fb131902a4f6", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "1201", + "Server" : "Microsoft-HTTPAPI/2.0", + "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" : "3cb9f401-417b-47c4-932a-93d6c8ed8e64", + "Date" : "Sun, 06 Mar 2022 06:04:11 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "e0381b1a-f568-40e2-a3d0-fb131902a4f6", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060412Z:3cb9f401-417b-47c4-932a-93d6c8ed8e64", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East US/asyncOperations/ca0bf663-eb9c-493d-82c2-fb02aeef3225?api-version=2021-06-01", + "x-ms-request-id" : "ca0bf663-eb9c-493d-82c2-fb02aeef3225", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\r\n \"location\": \"East US\",\r\n \"name\": \"redis91502\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"4.1.14\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"instances\": [\r\n {\r\n \"sslPort\": 15000,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n },\r\n {\r\n \"sslPort\": 15001,\r\n \"isMaster\": false,\r\n \"isPrimary\": false\r\n }\r\n ],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"642\",\r\n \"maxfragmentationmemory-reserved\": \"642\",\r\n \"maxmemory-delta\": \"642\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"***REMOVED***\",\r\n \"secondaryKey\": \"***REMOVED***\"\r\n },\r\n \"hostName\": \"redis91502.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9e84838a-2cd9-4982-8a41-228efadc88f1" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "72ca86a8-f8dc-4af7-ac4c-9e734703275b", + "Date" : "Sun, 06 Mar 2022 06:04:42 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "9e84838a-2cd9-4982-8a41-228efadc88f1", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060443Z:72ca86a8-f8dc-4af7-ac4c-9e734703275b", + "Expires" : "-1", + "x-ms-request-id" : "b920bb2f-de2b-4f14-8424-4ec2662adaff", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6c3070b5-dafb-43c4-9bef-a0a6a72684a0" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "7ae27350-2be3-479e-95f9-7bf64fd08a4b", + "Date" : "Sun, 06 Mar 2022 06:05:13 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "6c3070b5-dafb-43c4-9bef-a0a6a72684a0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060513Z:7ae27350-2be3-479e-95f9-7bf64fd08a4b", + "Expires" : "-1", + "x-ms-request-id" : "61578187-da1a-46fa-be14-a62420e37bec", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d354c6ae-dd09-405d-9103-464f38fa2ddc" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "60adad74-c703-4517-a1bd-e0faa3739d21", + "Date" : "Sun, 06 Mar 2022 06:05:44 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "d354c6ae-dd09-405d-9103-464f38fa2ddc", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060544Z:60adad74-c703-4517-a1bd-e0faa3739d21", + "Expires" : "-1", + "x-ms-request-id" : "3c06c260-0d9c-4187-b34f-7668b0276464", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "598e0920-5751-4698-a82f-535695b70b9a" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "e54e0d10-af7b-4bf3-91df-e12d0821ff86", + "Date" : "Sun, 06 Mar 2022 06:06:14 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "598e0920-5751-4698-a82f-535695b70b9a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060614Z:e54e0d10-af7b-4bf3-91df-e12d0821ff86", + "Expires" : "-1", + "x-ms-request-id" : "e11b3717-abe7-4fda-9d5c-929b3b34b207", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8733552f-dd50-4505-8a12-b05d26584d36" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "2bba811c-cce8-445c-837c-fda6d171dd41", + "Date" : "Sun, 06 Mar 2022 06:06:44 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "8733552f-dd50-4505-8a12-b05d26584d36", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060644Z:2bba811c-cce8-445c-837c-fda6d171dd41", + "Expires" : "-1", + "x-ms-request-id" : "63014f15-3914-46db-a352-900bcc2b525d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "813c4c6f-1218-42ed-ba5e-cd04d42bcc81" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "f44fe169-8550-4da0-a937-b15772806a01", + "Date" : "Sun, 06 Mar 2022 06:07:14 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "813c4c6f-1218-42ed-ba5e-cd04d42bcc81", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060715Z:f44fe169-8550-4da0-a937-b15772806a01", + "Expires" : "-1", + "x-ms-request-id" : "25f77e04-bf64-416c-b9b4-46a89ebb72ce", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "23674380-e4fc-4512-9d2d-fd915496857d" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "62cc3ebc-daab-443a-8ba1-f34703bfb779", + "Date" : "Sun, 06 Mar 2022 06:07:45 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "23674380-e4fc-4512-9d2d-fd915496857d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060745Z:62cc3ebc-daab-443a-8ba1-f34703bfb779", + "Expires" : "-1", + "x-ms-request-id" : "1bd4e24c-9691-46f3-9b64-dd08e7d29c78", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "87c65d5a-d425-45d6-ba58-29a580773f0a" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "d2852041-f277-4ad0-b4fe-ee92ac221ea1", + "Date" : "Sun, 06 Mar 2022 06:08:15 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "87c65d5a-d425-45d6-ba58-29a580773f0a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060816Z:d2852041-f277-4ad0-b4fe-ee92ac221ea1", + "Expires" : "-1", + "x-ms-request-id" : "ca4455e1-e208-4904-bca2-dc012349a3c9", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "cab64b14-c70c-4533-86ff-1bf214c88fcf" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "16f865a0-76cc-463a-8b3a-07ae108d8d76", + "Date" : "Sun, 06 Mar 2022 06:08:45 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "cab64b14-c70c-4533-86ff-1bf214c88fcf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060846Z:16f865a0-76cc-463a-8b3a-07ae108d8d76", + "Expires" : "-1", + "x-ms-request-id" : "ea8c3455-5e4f-4cb8-84b2-d0378de1a178", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "789c184a-7664-4bb1-9e2d-179ab5dab55d" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "5a47903a-b106-4745-8171-7ca80e3fcb8b", + "Date" : "Sun, 06 Mar 2022 06:09:17 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "789c184a-7664-4bb1-9e2d-179ab5dab55d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060917Z:5a47903a-b106-4745-8171-7ca80e3fcb8b", + "Expires" : "-1", + "x-ms-request-id" : "1d90075c-f26c-4d79-b4f2-5fc154247f27", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b98bba4f-6a7f-4fb1-9129-ea88f93b86aa" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "4248f0f2-9c63-4a02-af84-cc5c10df65cf", + "Date" : "Sun, 06 Mar 2022 06:09:47 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "b98bba4f-6a7f-4fb1-9129-ea88f93b86aa", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T060948Z:4248f0f2-9c63-4a02-af84-cc5c10df65cf", + "Expires" : "-1", + "x-ms-request-id" : "ed0a813d-70f2-43c3-a004-4e7ec4550b3a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "749a52c7-3d1d-4cfa-8dad-185cf73fa5ae" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "558f5172-3e00-4eb4-99f4-7a22456afd1d", + "Date" : "Sun, 06 Mar 2022 06:10:17 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "749a52c7-3d1d-4cfa-8dad-185cf73fa5ae", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061018Z:558f5172-3e00-4eb4-99f4-7a22456afd1d", + "Expires" : "-1", + "x-ms-request-id" : "f2c305b2-9acf-4b1e-97ff-1788f781446b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9ea0d8e4-df20-4f46-9af1-090b3bfb9fcf" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "9e2d3d7b-c86b-4cf7-8e27-7e01f1c6e40d", + "Date" : "Sun, 06 Mar 2022 06:10:48 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "9ea0d8e4-df20-4f46-9af1-090b3bfb9fcf", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061048Z:9e2d3d7b-c86b-4cf7-8e27-7e01f1c6e40d", + "Expires" : "-1", + "x-ms-request-id" : "8c6f02f5-f38a-4266-a4f4-db7c2f4ea946", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "efe81e74-36e5-42fd-9909-5c934fcef59b" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "b68c3ed7-278c-4f31-86e4-60d2e2649a30", + "Date" : "Sun, 06 Mar 2022 06:11:18 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "efe81e74-36e5-42fd-9909-5c934fcef59b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061119Z:b68c3ed7-278c-4f31-86e4-60d2e2649a30", + "Expires" : "-1", + "x-ms-request-id" : "6dbbcf83-fe02-4205-8e42-768e0a6fc0b6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ac7cda9a-fc4f-4489-a6c6-7a9ece5c001f" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "21fd8ae2-8ffa-480b-874c-0275a37c3ede", + "Date" : "Sun, 06 Mar 2022 06:11:48 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "ac7cda9a-fc4f-4489-a6c6-7a9ece5c001f", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061149Z:21fd8ae2-8ffa-480b-874c-0275a37c3ede", + "Expires" : "-1", + "x-ms-request-id" : "f11c5ef3-3e9e-4cb5-afbe-0b58c6a18fab", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "de27add7-8d84-430e-a871-2529a0929f76" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "ab1afb83-1ea2-4f89-a56a-b67ae658a5ce", + "Date" : "Sun, 06 Mar 2022 06:12:20 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "de27add7-8d84-430e-a871-2529a0929f76", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061220Z:ab1afb83-1ea2-4f89-a56a-b67ae658a5ce", + "Expires" : "-1", + "x-ms-request-id" : "81308f8b-0ebc-4ef2-b3b4-69f0894913bd", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "033ca70b-b628-4ea1-80ed-b3e394674877" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "07b7fc88-9935-4851-b18c-32d34317d2a9", + "Date" : "Sun, 06 Mar 2022 06:12:50 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "033ca70b-b628-4ea1-80ed-b3e394674877", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061250Z:07b7fc88-9935-4851-b18c-32d34317d2a9", + "Expires" : "-1", + "x-ms-request-id" : "5bf12ac0-049c-4294-99a0-d271611f3d6b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b8a1b833-17cd-40b3-a9df-824e464a644a" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "bab8bcb4-f62c-47af-bb6c-a848540aaa3c", + "Date" : "Sun, 06 Mar 2022 06:13:20 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "b8a1b833-17cd-40b3-a9df-824e464a644a", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061321Z:bab8bcb4-f62c-47af-bb6c-a848540aaa3c", + "Expires" : "-1", + "x-ms-request-id" : "800d4565-12a9-4531-9d93-f3eb740cf014", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3b6d1535-1401-4d43-b2e6-1b5bf871608d" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "98376929-aeb2-4d49-9029-af67adb09800", + "Date" : "Sun, 06 Mar 2022 06:13:51 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "3b6d1535-1401-4d43-b2e6-1b5bf871608d", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061351Z:98376929-aeb2-4d49-9029-af67adb09800", + "Expires" : "-1", + "x-ms-request-id" : "111ca4ae-2b86-4e3b-b9f0-bafbf95562e0", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ab22ec52-fb10-4dc4-8d60-ee337a3ce2dd" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "43ba3659-69a4-4202-b841-6d8ccd2ac873", + "Date" : "Sun, 06 Mar 2022 06:14:22 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "ab22ec52-fb10-4dc4-8d60-ee337a3ce2dd", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061423Z:43ba3659-69a4-4202-b841-6d8ccd2ac873", + "Expires" : "-1", + "x-ms-request-id" : "74f3cab3-5d64-4656-a963-dcc51a1b0a21", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e6660b7e-af7a-4e03-acba-f532fe93be9b" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "6adde959-d5f4-4761-8009-a688312b0b95", + "Date" : "Sun, 06 Mar 2022 06:14:52 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "e6660b7e-af7a-4e03-acba-f532fe93be9b", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061453Z:6adde959-d5f4-4761-8009-a688312b0b95", + "Expires" : "-1", + "x-ms-request-id" : "42534d91-0996-444b-9a61-11d103a54d18", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "88cc97bc-d83c-4503-a9f9-c55bad864884" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "84ea0b68-bf1f-42fe-b9a1-8149bd67237b", + "Date" : "Sun, 06 Mar 2022 06:15:23 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "88cc97bc-d83c-4503-a9f9-c55bad864884", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061523Z:84ea0b68-bf1f-42fe-b9a1-8149bd67237b", + "Expires" : "-1", + "x-ms-request-id" : "e51f1d51-2cf9-48ab-8ccd-680c4c63d451", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ce760634-7922-4de1-bab1-28789715ea57" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "ebac0a8d-e183-409c-bebd-6a730bbb8f9f", + "Date" : "Sun, 06 Mar 2022 06:15:54 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "ce760634-7922-4de1-bab1-28789715ea57", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061554Z:ebac0a8d-e183-409c-bebd-6a730bbb8f9f", + "Expires" : "-1", + "x-ms-request-id" : "d34339cf-3615-433c-a489-91c4484135f8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "b4a284c3-db46-4738-bf8e-bd9ce197fcd3" + }, + "Response" : { + "content-length" : "759", + "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", + "x-ms-correlation-request-id" : "fb344dff-c4b3-43ab-8806-b3c5a20ce0b7", + "Date" : "Sun, 06 Mar 2022 06:16:24 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "b4a284c3-db46-4738-bf8e-bd9ce197fcd3", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061624Z:fb344dff-c4b3-43ab-8806-b3c5a20ce0b7", + "Expires" : "-1", + "x-ms-request-id" : "18d7ed33-f260-4c74-a7d6-78475b3329fb", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":false,\"isPrimary\":false},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "600c229f-9201-4432-a5c3-71b01e479802" + }, + "Response" : { + "content-length" : "757", + "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", + "x-ms-correlation-request-id" : "1b45c8ea-2726-4bd0-9609-8358edc9518c", + "Date" : "Sun, 06 Mar 2022 06:16:54 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "600c229f-9201-4432-a5c3-71b01e479802", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061655Z:1b45c8ea-2726-4bd0-9609-8358edc9518c", + "Expires" : "-1", + "x-ms-request-id" : "71f5e3b9-1924-4107-a812-dfa7f5ba664c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "a452070a-7516-4489-b61b-f587539084f0" + }, + "Response" : { + "content-length" : "758", + "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", + "x-ms-correlation-request-id" : "6026e4ef-38ad-41b7-9081-effc7f9f63cc", + "Date" : "Sun, 06 Mar 2022 06:17:25 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "a452070a-7516-4489-b61b-f587539084f0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061725Z:6026e4ef-38ad-41b7-9081-effc7f9f63cc", + "Expires" : "-1", + "x-ms-request-id" : "e43d776e-a7a3-4aec-b48d-a9869b5711f1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\"location\":\"East US\",\"name\":\"redis91502\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"4.1.14\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"instances\":[{\"sslPort\":15000,\"isMaster\":true,\"isPrimary\":true},{\"sslPort\":15001,\"isMaster\":false,\"isPrimary\":false}],\"publicNetworkAccess\":\"Enabled\",\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"642\",\"maxfragmentationmemory-reserved\":\"642\",\"maxmemory-delta\":\"642\"},\"accessKeys\":null,\"hostName\":\"redis91502.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502/privateLinkResources?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "7d945e28-d349-4c4d-971d-6eb9999d0bab", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "380", + "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", + "x-ms-correlation-request-id" : "875894e6-39e2-45ac-b470-c324d42c3f07", + "Date" : "Sun, 06 Mar 2022 06:17:26 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "7d945e28-d349-4c4d-971d-6eb9999d0bab", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061726Z:875894e6-39e2-45ac-b470-c324d42c3f07", + "Expires" : "-1", + "x-ms-request-id" : "cc050363-9ebe-4d50-a78c-41b79b959a32", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502/privateLinkResources/redisCache\",\"name\":\"redisCache\",\"type\":\"Microsoft.Cache/Redis/privateLinkResources\",\"properties\":{\"groupId\":\"redisCache\",\"requiredMembers\":[\"redisCache\"],\"requiredZoneNames\":[\"privatelink.redis.cache.windows.net\"]}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/virtualNetworks/vn595104?api-version=2021-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "3b347567-bea5-4694-b0d4-6c121a4a0b80", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "1291", + "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" : "901456d7-b2bd-40fe-8de2-aef7889d75e3", + "Date" : "Sun, 06 Mar 2022 06:17:30 GMT", + "x-ms-arm-service-request-id" : "e779a129-1e0d-421b-bb99-4caa39c7f7e7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "Retry-After" : "0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061730Z:901456d7-b2bd-40fe-8de2-aef7889d75e3", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0eede8da-cc56-47d0-9ddf-2563963be108?api-version=2021-05-01", + "x-ms-request-id" : "0eede8da-cc56-47d0-9ddf-2563963be108", + "Body" : "{\r\n \"name\": \"vn595104\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/virtualNetworks/vn595104\",\r\n \"etag\": \"W/\\\"f64cdc9d-1862-483c-87d1-63b1158d6cde\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"247159b8-c4a3-487f-aa61-c556a4f8a8f6\",\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\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/virtualNetworks/vn595104/subnets/default\",\r\n \"etag\": \"W/\\\"f64cdc9d-1862-483c-87d1-63b1158d6cde\\\"\",\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" : "3b347567-bea5-4694-b0d4-6c121a4a0b80", + "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/0eede8da-cc56-47d0-9ddf-2563963be108?api-version=2021-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "77373e3c-cc07-4286-92c8-fa6ddb912448" + }, + "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" : "11972", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "2bb25a30-33e8-4033-8497-74f86828fabb", + "Date" : "Sun, 06 Mar 2022 06:17:34 GMT", + "x-ms-arm-service-request-id" : "4eb7034c-075a-4247-a276-f6f1cd89a0d4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061734Z:2bb25a30-33e8-4033-8497-74f86828fabb", + "Expires" : "-1", + "x-ms-request-id" : "a584514f-c71d-4294-813c-e9971d50a9c7", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "x-ms-client-request-id" : "77373e3c-cc07-4286-92c8-fa6ddb912448", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/virtualNetworks/vn595104?api-version=2021-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "c1cd51e7-7a18-47a6-8e66-1be92d950f98" + }, + "Response" : { + "content-length" : "1293", + "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" : "bcff2a9b-7af0-44bc-a6e4-806a25b3ebe4", + "Date" : "Sun, 06 Mar 2022 06:17:35 GMT", + "x-ms-arm-service-request-id" : "213db2c3-a1d3-48b7-9add-615d110f0bc0", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"72d48898-f8cb-4d62-a089-86653b8b17f4\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061735Z:bcff2a9b-7af0-44bc-a6e4-806a25b3ebe4", + "Expires" : "-1", + "x-ms-request-id" : "bf0c1a81-3ebb-474c-875b-d5e819042dd7", + "Body" : "{\r\n \"name\": \"vn595104\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/virtualNetworks/vn595104\",\r\n \"etag\": \"W/\\\"72d48898-f8cb-4d62-a089-86653b8b17f4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"247159b8-c4a3-487f-aa61-c556a4f8a8f6\",\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\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/virtualNetworks/vn595104/subnets/default\",\r\n \"etag\": \"W/\\\"72d48898-f8cb-4d62-a089-86653b8b17f4\\\"\",\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" : "c1cd51e7-7a18-47a6-8e66-1be92d950f98", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a?api-version=2021-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5f7e162a-a5bc-41e9-a109-ec77ae893d5d", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "2018", + "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" : "9fa97541-ffeb-4908-a46e-debb5187d123", + "Date" : "Sun, 06 Mar 2022 06:17:39 GMT", + "x-ms-arm-service-request-id" : "c14dbdfa-3cea-4488-b073-d959fbb02b52", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "Retry-After" : "0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061739Z:9fa97541-ffeb-4908-a46e-debb5187d123", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9e3e4826-254a-4719-960e-ed99f4e3dacb?api-version=2021-05-01", + "x-ms-request-id" : "9e3e4826-254a-4719-960e-ed99f4e3dacb", + "Body" : "{\r\n \"name\": \"pe45039a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a\",\r\n \"etag\": \"W/\\\"37d847a5-a5e6-4c98-ba95-0202bba0a47b\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"beac41f5-3a1f-49a1-bc84-fc99b09c810f\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"pec481378\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a/manualPrivateLinkServiceConnections/pec481378\",\r\n \"etag\": \"W/\\\"37d847a5-a5e6-4c98-ba95-0202bba0a47b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\r\n \"groupIds\": [\r\n \"redisCache\"\r\n ],\r\n \"requestMessage\": \"request message\",\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"request message\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/virtualNetworks/vn595104/subnets/default\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/networkInterfaces/pe45039a.nic.4782b899-65da-4bf9-8c2f-e27719173e78\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", + "x-ms-client-request-id" : "5f7e162a-a5bc-41e9-a109-ec77ae893d5d", + "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/9e3e4826-254a-4719-960e-ed99f4e3dacb?api-version=2021-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "5265ab1a-1dd3-4aee-898d-1030e7c23318" + }, + "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" : "11998", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "21f3c3fb-1b3e-4beb-b8d6-7622a048f9da", + "Date" : "Sun, 06 Mar 2022 06:17:49 GMT", + "x-ms-arm-service-request-id" : "8b60f79a-40c8-4597-b281-d0a77e274cb4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "Retry-After" : "0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061749Z:21f3c3fb-1b3e-4beb-b8d6-7622a048f9da", + "Expires" : "-1", + "x-ms-request-id" : "1e268752-a25d-4f2f-a0ea-6783502a3129", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "x-ms-client-request-id" : "5265ab1a-1dd3-4aee-898d-1030e7c23318", + "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/9e3e4826-254a-4719-960e-ed99f4e3dacb?api-version=2021-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "9153dbd5-7c98-46f8-9b5f-e07f8233f601" + }, + "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" : "11971", + "StatusCode" : "200", + "x-ms-correlation-request-id" : "aa7b3d3f-e350-4a35-9cac-2ba206b0ba37", + "Date" : "Sun, 06 Mar 2022 06:17:59 GMT", + "x-ms-arm-service-request-id" : "f98e7833-616c-47e1-b516-5fde0b272c8d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "Retry-After" : "0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061800Z:aa7b3d3f-e350-4a35-9cac-2ba206b0ba37", + "Expires" : "-1", + "x-ms-request-id" : "166f3f3b-9f26-4f02-b26c-01210a4cd8fa", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "x-ms-client-request-id" : "9153dbd5-7c98-46f8-9b5f-e07f8233f601", + "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/9e3e4826-254a-4719-960e-ed99f4e3dacb?api-version=2021-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "894db116-374c-459a-8d09-9dd5182878b1" + }, + "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" : "8d23fedc-6aaf-44ae-9fed-60817693d619", + "Date" : "Sun, 06 Mar 2022 06:18:19 GMT", + "x-ms-arm-service-request-id" : "9800cc74-c35d-47fc-bf32-9c866c38cec6", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061820Z:8d23fedc-6aaf-44ae-9fed-60817693d619", + "Expires" : "-1", + "x-ms-request-id" : "06daee9c-1e90-49a2-afbd-07e353d96634", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "x-ms-client-request-id" : "894db116-374c-459a-8d09-9dd5182878b1", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a?api-version=2021-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "ff8aed8d-6d2b-437e-b2a5-c764bde61435" + }, + "Response" : { + "content-length" : "2019", + "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" : "82e1ce76-6553-4490-928f-6e1cd4fcc9a5", + "Date" : "Sun, 06 Mar 2022 06:18:20 GMT", + "x-ms-arm-service-request-id" : "b0e42717-ff93-4501-b485-dac38c555eb3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"b643c68d-c7fc-4322-a9b8-4a58c12584a3\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061821Z:82e1ce76-6553-4490-928f-6e1cd4fcc9a5", + "Expires" : "-1", + "x-ms-request-id" : "5e4853a6-3b13-4acf-8c34-f6a4158cc6d6", + "Body" : "{\r\n \"name\": \"pe45039a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a\",\r\n \"etag\": \"W/\\\"b643c68d-c7fc-4322-a9b8-4a58c12584a3\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"beac41f5-3a1f-49a1-bc84-fc99b09c810f\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"pec481378\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a/manualPrivateLinkServiceConnections/pec481378\",\r\n \"etag\": \"W/\\\"b643c68d-c7fc-4322-a9b8-4a58c12584a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\r\n \"groupIds\": [\r\n \"redisCache\"\r\n ],\r\n \"requestMessage\": \"request message\",\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"request message\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/virtualNetworks/vn595104/subnets/default\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/networkInterfaces/pe45039a.nic.4782b899-65da-4bf9-8c2f-e27719173e78\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", + "x-ms-client-request-id" : "ff8aed8d-6d2b-437e-b2a5-c764bde61435", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502/privateEndpointConnections?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "e0a83b9f-f247-4d6e-8221-96e515923903", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "623", + "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", + "x-ms-correlation-request-id" : "cba09532-b226-44f2-85e6-f7af9ad732f8", + "Date" : "Sun, 06 Mar 2022 06:18:22 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "e0a83b9f-f247-4d6e-8221-96e515923903", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061823Z:cba09532-b226-44f2-85e6-f7af9ad732f8", + "Expires" : "-1", + "x-ms-request-id" : "f302a38d-1554-4285-aa0e-a4b24b0f5619", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502/privateEndpointConnections/pe45039a.fa620651-1561-400e-bd5f-6f848951c6c4\",\"name\":\"pe45039a.fa620651-1561-400e-bd5f-6f848951c6c4\",\"type\":\"Microsoft.Cache/Redis/privateEndpointConnections\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"request message\",\"actionsRequired\":\"None\"}}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/redis/redis91502/privateEndpointConnections/pe45039a.fa620651-1561-400e-bd5f-6f848951c6c4?api-version=2021-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.redis/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "8b90208f-ba7c-4f48-8051-a937ec2eb317", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "685", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "Pragma" : "no-cache", + "retry-after" : "0", + "StatusCode" : "201", + "x-ms-correlation-request-id" : "a5d53669-d903-48c4-b4ed-92e0273119fe", + "Date" : "Sun, 06 Mar 2022 06:18:23 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-rp-server-mvid" : "9a05af01-0d10-4d27-8bb8-124a3141d01a", + "Cache-Control" : "no-cache", + "client-request-id" : "8b90208f-ba7c-4f48-8051-a937ec2eb317", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061824Z:a5d53669-d903-48c4-b4ed-92e0273119fe", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East US/asyncOperations/36614da1-87f3-4dca-909c-1e9cafd6f34f?api-version=2019-07-01", + "x-ms-request-id" : "36614da1-87f3-4dca-909c-1e9cafd6f34f", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502/privateEndpointConnections/pe45039a.fa620651-1561-400e-bd5f-6f848951c6c4\",\r\n \"name\": \"pe45039a.fa620651-1561-400e-bd5f-6f848951c6c4\",\r\n \"type\": \"Microsoft.Cache/Redis/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/asyncOperations/36614da1-87f3-4dca-909c-1e9cafd6f34f?api-version=2019-07-01" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a?api-version=2021-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "4e2cff2e-7d7c-4584-9d11-0685209d302b", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "2019", + "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" : "ad805469-cd4f-4340-86c5-6fe7edc94554", + "Date" : "Sun, 06 Mar 2022 06:18:24 GMT", + "x-ms-arm-service-request-id" : "c1f8a70c-8387-4c67-8d52-42a8120efb85", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"b643c68d-c7fc-4322-a9b8-4a58c12584a3\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061825Z:ad805469-cd4f-4340-86c5-6fe7edc94554", + "Expires" : "-1", + "x-ms-request-id" : "8b0cad47-af20-4f85-93b5-401de80d9770", + "Body" : "{\r\n \"name\": \"pe45039a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a\",\r\n \"etag\": \"W/\\\"b643c68d-c7fc-4322-a9b8-4a58c12584a3\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"beac41f5-3a1f-49a1-bc84-fc99b09c810f\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"pec481378\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a/manualPrivateLinkServiceConnections/pec481378\",\r\n \"etag\": \"W/\\\"b643c68d-c7fc-4322-a9b8-4a58c12584a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\r\n \"groupIds\": [\r\n \"redisCache\"\r\n ],\r\n \"requestMessage\": \"request message\",\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Pending\",\r\n \"description\": \"request message\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/virtualNetworks/vn595104/subnets/default\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/networkInterfaces/pe45039a.nic.4782b899-65da-4bf9-8c2f-e27719173e78\"\r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}", + "x-ms-client-request-id" : "4e2cff2e-7d7c-4584-9d11-0685209d302b", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a?api-version=2021-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "6a0153fa-5711-4a30-9f26-7ae4ce56bc63", + "Content-Type" : "application/json" + }, + "Response" : { + "content-length" : "2143", + "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" : "39dba18c-39ec-413b-bc28-2288866c8034", + "Date" : "Sun, 06 Mar 2022 06:18:55 GMT", + "x-ms-arm-service-request-id" : "03a35683-6f02-4025-a866-816b431ccaa2", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"873e42e3-986c-41ae-93f8-686213b24a16\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061855Z:39dba18c-39ec-413b-bc28-2288866c8034", + "Expires" : "-1", + "x-ms-request-id" : "cf0b3caa-7f96-4fc8-b92f-8758a4ae390e", + "Body" : "{\r\n \"name\": \"pe45039a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a\",\r\n \"etag\": \"W/\\\"873e42e3-986c-41ae-93f8-686213b24a16\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"beac41f5-3a1f-49a1-bc84-fc99b09c810f\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"pec481378\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/privateEndpoints/pe45039a/manualPrivateLinkServiceConnections/pec481378\",\r\n \"etag\": \"W/\\\"873e42e3-986c-41ae-93f8-686213b24a16\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Cache/Redis/redis91502\",\r\n \"groupIds\": [\r\n \"redisCache\"\r\n ],\r\n \"requestMessage\": \"request message\",\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\"\r\n }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/virtualNetworks/vn595104/subnets/default\"\r\n },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg39524/providers/Microsoft.Network/networkInterfaces/pe45039a.nic.4782b899-65da-4bf9-8c2f-e27719173e78\"\r\n }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \"fqdn\": \"redis91502.redis.cache.windows.net\",\r\n \"ipAddresses\": [\r\n \"10.0.0.4\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "x-ms-client-request-id" : "6a0153fa-5711-4a30-9f26-7ae4ce56bc63", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg39524?api-version=2021-01-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.13.0-beta.1 (17.0.1; Windows 11; 10.0)", + "x-ms-client-request-id" : "d39dbf2f-2c92-4424-9b9a-783136c3ec27", + "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" : "f1b7cbe8-ba95-448d-a5bc-cc78f35113ee", + "Date" : "Sun, 06 Mar 2022 06:19:35 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "Retry-After" : "0", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20220306T061935Z:f1b7cbe8-ba95-448d-a5bc-cc78f35113ee", + "Expires" : "-1", + "x-ms-request-id" : "f1b7cbe8-ba95-448d-a5bc-cc78f35113ee", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczOTUyNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" + }, + "Exception" : null + } ], + "variables" : [ "javacsmrg39524", "sa14068a", "vn595104", "pe45039a", "pec481378", "redis91502" ] +} \ No newline at end of file diff --git a/sdk/resourcemanager/credcheck.js b/sdk/resourcemanager/credcheck.js index 9d4fe25b35994..b190314af55a5 100644 --- a/sdk/resourcemanager/credcheck.js +++ b/sdk/resourcemanager/credcheck.js @@ -18,6 +18,8 @@ function credcheck(dir) { redactDict.set(/;SharedAccessKey=(.*?)(;|\\")/g, ';SharedAccessKey=***REMOVED***$2'); redactDict.set(/\\"primaryKey\\":\\"(.*?)\\"/g, '\\"primaryKey\\":\\"***REMOVED***\\"'); redactDict.set(/\\"secondaryKey\\":\\"(.*?)\\"/g, '\\"secondaryKey\\":\\"***REMOVED***\\"'); + redactDict.set(/\\"primaryKey\\": \\"(.*?)\\"/g, '\\"primaryKey\\": \\"***REMOVED***\\"'); + redactDict.set(/\\"secondaryKey\\": \\"(.*?)\\"/g, '\\"secondaryKey\\": \\"***REMOVED***\\"'); redactDict.set(/\\"secretText\\":\\"(.*?)\\"/g, '\\"secretText\\":\\"***REMOVED***\\"'); redactDict.set(/&sig=(.*?)(&|\\")/g, '&sig=***REMOVED***$2'); redactDict.set(/\\"DOCKER_REGISTRY_SERVER_PASSWORD\\":\\"(.*?)\\"/g, '\\"DOCKER_REGISTRY_SERVER_PASSWORD\\":\\"***REMOVED***\\"');