From b23aae4f5a05f1f5f5b2a337bb3038cd094c8327 Mon Sep 17 00:00:00 2001 From: Hovsep Date: Fri, 29 Jun 2018 10:56:05 -0700 Subject: [PATCH] Regenerated Redis with latest fixes. (#445) * Regenerated Redis with latest fixes. * fix for https://github.com/Azure/azure-libraries-for-net/issues/305 * Fix for https://github.com/Azure/azure-libraries-for-net/issues/304 * fix for https://github.com/Azure/azure-libraries-for-net/issues/303 * Fixed build break * commit of the current dev state * Added comments. * Fixed stylecheck errors. * fix of the fix * Fixed the fix of the fix * Fix the build break. * Fix for PatchSchedule failures * fixed style check breaks * Fixed LinkedServers. * Fixed build breaks. * Re-recorded redis Azure test * re-recorded Redis sample * Fixed Beta since text. --- .../cdn/implementation/CdnProfileImpl.java | 2 +- ...a => CheckNameAvailabilityParameters.java} | 21 +- ...ersInner.java => ExportRDBParameters.java} | 16 +- ...ersInner.java => ImportRDBParameters.java} | 12 +- .../azure/management/redis/RedisCache.java | 141 +- .../management/redis/RedisCachePremium.java | 46 + .../azure/management/redis/RedisCaches.java | 20 + ...sInner.java => RedisCreateParameters.java} | 50 +- .../management/redis/RedisFirewallRule.java | 46 + ...=> RedisFirewallRuleCreateParameters.java} | 12 +- ...=> RedisLinkedServerCreateParameters.java} | 17 +- .../management/redis/RedisPatchSchedule.java | 33 + ...sInner.java => RedisRebootParameters.java} | 13 +- ...sInner.java => RedisUpdateParameters.java} | 34 +- .../azure/management/redis/ScheduleEntry.java | 44 +- .../implementation/FirewallRulesInner.java | 11 +- .../implementation/LinkedServersInner.java | 21 +- .../implementation/PatchSchedulesInner.java | 256 +- .../redis/implementation/RedisCacheImpl.java | 305 +- .../redis/implementation/RedisCachesImpl.java | 19 + .../implementation/RedisFirewallRuleImpl.java | 94 + .../RedisFirewallRulesImpl.java | 74 + .../redis/implementation/RedisInner.java | 104 +- .../RedisPatchScheduleImpl.java | 87 + .../RedisPatchScheduleInner.java | 7 +- .../RedisPatchSchedulesImpl.java | 91 + .../implementation/ScheduleEntryInner.java | 99 - .../redis/RedisCacheOperationsTests.java | 74 +- .../management/redis/RedisManagementTest.java | 9 +- .../session-records/canCRUDLinkedServers.json | 5790 +++++++++++++++++ .../session-records/canCRUDRedisCache.json | 4840 +++++++++----- .../session-records/testManageRedisCache.json | 4784 +++++++++----- .../resources/session-records/testRedis.json | 2169 ++++-- 33 files changed, 15301 insertions(+), 4040 deletions(-) rename azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/{implementation/CheckNameAvailabilityParametersInner.java => CheckNameAvailabilityParameters.java} (59%) rename azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/{implementation/ExportRDBParametersInner.java => ExportRDBParameters.java} (77%) rename azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/{implementation/ImportRDBParametersInner.java => ImportRDBParameters.java} (77%) rename azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/{implementation/RedisCreateParametersInner.java => RedisCreateParameters.java} (79%) create mode 100644 azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisFirewallRule.java rename azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/{implementation/RedisFirewallRuleCreateParametersInner.java => RedisFirewallRuleCreateParameters.java} (76%) rename azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/{implementation/RedisLinkedServerCreateParametersInner.java => RedisLinkedServerCreateParameters.java} (76%) create mode 100644 azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisPatchSchedule.java rename azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/{implementation/RedisRebootParametersInner.java => RedisRebootParameters.java} (76%) rename azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/{implementation/RedisUpdateParametersInner.java => RedisUpdateParameters.java} (78%) create mode 100644 azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisFirewallRuleImpl.java create mode 100644 azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisFirewallRulesImpl.java create mode 100644 azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisPatchScheduleImpl.java create mode 100644 azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisPatchSchedulesImpl.java delete mode 100644 azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/ScheduleEntryInner.java create mode 100644 azure-mgmt-redis/src/test/resources/session-records/canCRUDLinkedServers.json diff --git a/azure-mgmt-cdn/src/main/java/com/microsoft/azure/management/cdn/implementation/CdnProfileImpl.java b/azure-mgmt-cdn/src/main/java/com/microsoft/azure/management/cdn/implementation/CdnProfileImpl.java index 5ab6017bf25..5dd77824e6a 100644 --- a/azure-mgmt-cdn/src/main/java/com/microsoft/azure/management/cdn/implementation/CdnProfileImpl.java +++ b/azure-mgmt-cdn/src/main/java/com/microsoft/azure/management/cdn/implementation/CdnProfileImpl.java @@ -53,7 +53,7 @@ class CdnProfileImpl @Override public Map endpoints() { // This is not right, The endpoints are not inline children of profile (hence they are - // not ached) but CdnEndpointsImpl today is deriving from ExternalChildResourceCachedImpl + // not cached) but CdnEndpointsImpl today is deriving from ExternalChildResourceCachedImpl // instead it should derive from ExternalChildResourceNonCachedImpl // return this.endpoints.endpointsAsMap(); diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/CheckNameAvailabilityParametersInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/CheckNameAvailabilityParameters.java similarity index 59% rename from azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/CheckNameAvailabilityParametersInner.java rename to azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/CheckNameAvailabilityParameters.java index b671a52235c..0f6cc70e65d 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/CheckNameAvailabilityParametersInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/CheckNameAvailabilityParameters.java @@ -6,24 +6,25 @@ * Code generated by Microsoft (R) AutoRest Code Generator. */ -package com.microsoft.azure.management.redis.implementation; +package com.microsoft.azure.management.redis; import com.fasterxml.jackson.annotation.JsonProperty; /** - * Parameters body to pass for name availability check. + * Parameters body to pass for resource name availability check. */ -public class CheckNameAvailabilityParametersInner { +public class CheckNameAvailabilityParameters { /** * Resource name. */ - @JsonProperty(value = "name") + @JsonProperty(value = "name", required = true) private String name; /** - * Resource type. + * Resource type. The only legal value of this property for checking redis + * cache name availability is 'Microsoft.Cache/redis'. */ - @JsonProperty(value = "type") + @JsonProperty(value = "type", required = true) private String type; /** @@ -39,9 +40,9 @@ public String name() { * Set the name value. * * @param name the name value to set - * @return the CheckNameAvailabilityParametersInner object itself. + * @return the CheckNameAvailabilityParameters object itself. */ - public CheckNameAvailabilityParametersInner withName(String name) { + public CheckNameAvailabilityParameters withName(String name) { this.name = name; return this; } @@ -59,9 +60,9 @@ public String type() { * Set the type value. * * @param type the type value to set - * @return the CheckNameAvailabilityParametersInner object itself. + * @return the CheckNameAvailabilityParameters object itself. */ - public CheckNameAvailabilityParametersInner withType(String type) { + public CheckNameAvailabilityParameters withType(String type) { this.type = type; return this; } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/ExportRDBParametersInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/ExportRDBParameters.java similarity index 77% rename from azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/ExportRDBParametersInner.java rename to azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/ExportRDBParameters.java index 05711153b7f..ed298464d25 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/ExportRDBParametersInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/ExportRDBParameters.java @@ -6,14 +6,14 @@ * Code generated by Microsoft (R) AutoRest Code Generator. */ -package com.microsoft.azure.management.redis.implementation; +package com.microsoft.azure.management.redis; import com.fasterxml.jackson.annotation.JsonProperty; /** * Parameters for Redis export operation. */ -public class ExportRDBParametersInner { +public class ExportRDBParameters { /** * File format. */ @@ -45,9 +45,9 @@ public String format() { * Set the format value. * * @param format the format value to set - * @return the ExportRDBParametersInner object itself. + * @return the ExportRDBParameters object itself. */ - public ExportRDBParametersInner withFormat(String format) { + public ExportRDBParameters withFormat(String format) { this.format = format; return this; } @@ -65,9 +65,9 @@ public String prefix() { * Set the prefix value. * * @param prefix the prefix value to set - * @return the ExportRDBParametersInner object itself. + * @return the ExportRDBParameters object itself. */ - public ExportRDBParametersInner withPrefix(String prefix) { + public ExportRDBParameters withPrefix(String prefix) { this.prefix = prefix; return this; } @@ -85,9 +85,9 @@ public String container() { * Set the container value. * * @param container the container value to set - * @return the ExportRDBParametersInner object itself. + * @return the ExportRDBParameters object itself. */ - public ExportRDBParametersInner withContainer(String container) { + public ExportRDBParameters withContainer(String container) { this.container = container; return this; } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/ImportRDBParametersInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/ImportRDBParameters.java similarity index 77% rename from azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/ImportRDBParametersInner.java rename to azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/ImportRDBParameters.java index aaa26b6ba92..8dce323ca43 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/ImportRDBParametersInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/ImportRDBParameters.java @@ -6,7 +6,7 @@ * Code generated by Microsoft (R) AutoRest Code Generator. */ -package com.microsoft.azure.management.redis.implementation; +package com.microsoft.azure.management.redis; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty; @@ -14,7 +14,7 @@ /** * Parameters for Redis import operation. */ -public class ImportRDBParametersInner { +public class ImportRDBParameters { /** * File format. */ @@ -40,9 +40,9 @@ public String format() { * Set the format value. * * @param format the format value to set - * @return the ImportRDBParametersInner object itself. + * @return the ImportRDBParameters object itself. */ - public ImportRDBParametersInner withFormat(String format) { + public ImportRDBParameters withFormat(String format) { this.format = format; return this; } @@ -60,9 +60,9 @@ public List files() { * Set the files value. * * @param files the files value to set - * @return the ImportRDBParametersInner object itself. + * @return the ImportRDBParameters object itself. */ - public ImportRDBParametersInner withFiles(List files) { + public ImportRDBParameters withFiles(List files) { this.files = files; return this; } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCache.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCache.java index 49bea35e9f9..1f874df6d35 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCache.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCache.java @@ -5,6 +5,7 @@ */ package com.microsoft.azure.management.redis; +import com.microsoft.azure.management.apigeneration.Beta; import org.joda.time.Period; import com.microsoft.azure.management.apigeneration.Fluent; @@ -96,6 +97,18 @@ public interface RedisCache extends */ String staticIP(); + /** + * @return the minimum TLS version (or higher) that clients require to use. + */ + @Beta(Beta.SinceVersion.V1_12_0) + TlsVersion minimumTlsVersion(); + + /** + * @return Firewall Rules in the Redis Cache, indexed by name + */ + @Beta(Beta.SinceVersion.V1_12_0) + Map firewallRules(); + /** * @return a Redis Cache's access keys. This operation requires write permission to the Cache resource. */ @@ -163,6 +176,7 @@ interface WithSku { * * @return the next stage of Redis Cache definition. */ + @Method WithCreate withBasicSku(); /** @@ -178,6 +192,7 @@ interface WithSku { * * @return the next stage of Redis Cache definition. */ + @Method WithCreate withStandardSku(); /** @@ -193,6 +208,7 @@ interface WithSku { * * @return the next stage of Redis Cache definition. */ + @Method WithPremiumSkuCreate withPremiumSku(); /** @@ -217,6 +233,7 @@ interface WithCreate extends * * @return the next stage of Redis Cache definition. */ + @Method WithCreate withNonSslPort(); /** @@ -245,21 +262,33 @@ interface WithCreate extends WithCreate withRedisConfiguration(String key, String value); /** - * Assigns the specified subnet to this instance of Redis Cache. + * Creates Redis cache firewall rule with range of IP addresses permitted to connect to the cache. + * + * @param name name of the rule. + * @param lowestIp lowest IP address included in the range. + * @param highestIp highest IP address included in the range. + * @return the next stage of Redis Cache definition. + */ + @Beta(Beta.SinceVersion.V1_12_0) + WithCreate withFirewallRule(String name, String lowestIp, String highestIp); + + /** + * Creates Redis cache firewall rule with range of IP addresses permitted to connect to the cache. * - * @param network instance of Network object. - * @param subnetName the name of the subnet. + * @param rule firewall rule that specifies name, lowest and highest IP address included in the range of permitted IP addresses. * @return the next stage of Redis Cache definition. */ - WithCreate withSubnet(HasId network, String subnetName); + @Beta(Beta.SinceVersion.V1_12_0) + WithCreate withFirewallRule(RedisFirewallRule rule); /** - * Sets Redis Cache static IP. Required when deploying a Redis Cache inside an existing Azure Virtual Network. + * Requires clients to use a specified TLS version (or higher) to connect (e,g, '1.0', '1.1', '1.2'). * - * @param staticIP the static IP value to set. + * @param tlsVersion minimum TLS version. * @return the next stage of Redis Cache definition. */ - WithCreate withStaticIP(String staticIP); + @Beta(Beta.SinceVersion.V1_12_0) + WithCreate withMinimumTlsVersion(TlsVersion tlsVersion); } /** @@ -309,6 +338,34 @@ interface WithPremiumSkuCreate extends DefinitionStages.WithCreate { * @return the next stage of Redis Cache with Premium SKU definition. */ WithPremiumSkuCreate withPatchSchedule(List scheduleEntry); + + /** + * Assigns the specified subnet to this instance of Redis Cache. + * + * @param network instance of Network object. + * @param subnetName the name of the subnet. + * @return the next stage of Redis Cache definition. + */ + @Beta(Beta.SinceVersion.V1_12_0) + WithCreate withSubnet(HasId network, String subnetName); + + /** + * Assigns the specified subnet to this instance of Redis Cache. + * + * @param subnetId resource id of subnet. + * @return the next stage of Redis Cache definition. + */ + @Beta(Beta.SinceVersion.V1_12_0) + WithCreate withSubnet(String subnetId); + + /** + * Sets Redis Cache static IP. Required when deploying a Redis Cache inside an existing Azure Virtual Network. + * + * @param staticIP the static IP value to set. + * @return the next stage of Redis Cache definition. + */ + @Beta(Beta.SinceVersion.V1_12_0) + WithCreate withStaticIP(String staticIP); } } @@ -334,6 +391,7 @@ interface WithSku { * * @return the next stage of Redis Cache update. */ + @Method Update withStandardSku(); /** @@ -349,6 +407,7 @@ interface WithSku { * * @return the next stage of Redis Cache update. */ + @Method Update withPremiumSku(); /** @@ -369,6 +428,7 @@ interface WithNonSslPort { * * @return the next stage of Redis Cache update. */ + @Method Update withNonSslPort(); /** @@ -376,6 +436,7 @@ interface WithNonSslPort { * * @return the next stage of Redis Cache update. */ + @Method Update withoutNonSslPort(); } @@ -413,6 +474,7 @@ interface WithRedisConfiguration { * * @return the next stage of Redis Cache update. */ + @Method Update withoutRedisConfiguration(); /** @@ -443,7 +505,7 @@ interface Update extends Update withShardCount(int shardCount); /** - * Patch schedule on a Premium Cluster Cache. + * Adds Patch schedule to the current Premium Cluster Cache. * * @param dayOfWeek day of week when cache can be patched. * @param startHourUtc start hour after which cache patching can start. @@ -452,7 +514,7 @@ interface Update extends Update withPatchSchedule(DayOfWeek dayOfWeek, int startHourUtc); /** - * The number of shards to be created on a Premium Cluster Cache. + * Adds Patch schedule to the current Premium Cluster Cache. * * @param dayOfWeek day of week when cache can be patched. * @param startHourUtc start hour after which cache patching can start. @@ -462,7 +524,7 @@ interface Update extends Update withPatchSchedule(DayOfWeek dayOfWeek, int startHourUtc, Period maintenanceWindow); /** - * Patch schedule on a Premium Cluster Cache. + * Adds Patch schedule to the current Premium Cluster Cache. * * @param scheduleEntry Patch schedule entry for Premium Redis Cache. * @return the next stage of Redis Cache with Premium SKU definition. @@ -470,12 +532,69 @@ interface Update extends Update withPatchSchedule(ScheduleEntry scheduleEntry); /** - * Patch schedule on a Premium Cluster Cache. + * Adds Patch schedule to the current Premium Cluster Cache. * * @param scheduleEntry List of patch schedule entries for Premium Redis Cache. * @return the next stage of Redis Cache with Premium SKU definition. */ Update withPatchSchedule(List scheduleEntry); + + + /** + * Removes all Patch schedules from the current Premium Cluster Cache. + * + * @return the next stage of Redis Cache with Premium SKU definition. + */ + @Beta(Beta.SinceVersion.V1_12_0) + @Method + Update withoutPatchSchedule(); + + /** + * Creates or updates Redis cache firewall rule with range of IP addresses permitted to connect to the cache. + * + * @param name name of the rule. + * @param lowestIp lowest IP address included in the range. + * @param highestIp highest IP address included in the range. + * @return the next stage of Redis Cache update. + */ + @Beta(Beta.SinceVersion.V1_12_0) + Update withFirewallRule(String name, String lowestIp, String highestIp); + + /** + * Creates or updates Redis cache firewall rule with range of IP addresses permitted to connect to the cache. + * + * @param rule firewall rule that specifies name, lowest and highest IP address included in the range of permitted IP addresses. + * @return the next stage of Redis Cache update. + */ + @Beta(Beta.SinceVersion.V1_12_0) + Update withFirewallRule(RedisFirewallRule rule); + + /** + * Deletes a single firewall rule in the current Redis cache instance. + * + * @param name name of the rule. + * @return the next stage of Redis Cache update. + */ + @Beta(Beta.SinceVersion.V1_12_0) + Update withoutFirewallRule(String name); + + /** + * Requires clients to use a specified TLS version (or higher) to connect (e,g, '1.0', '1.1', '1.2'). + * + * @param tlsVersion minimum TLS version. + * @return the next stage of Redis Cache definition. + */ + @Beta(Beta.SinceVersion.V1_12_0) + Update withMinimumTlsVersion(TlsVersion tlsVersion); + + /** + * Removes the requirement for clients minimum TLS version. + * + * @return the next stage of Redis Cache definition. + */ + @Beta(Beta.SinceVersion.V1_12_0) + @Method + Update withoutMinimumTlsVersion(); } } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCachePremium.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCachePremium.java index 6e8f26b55ed..d586bfc1557 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCachePremium.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCachePremium.java @@ -6,7 +6,9 @@ package com.microsoft.azure.management.redis; import java.util.List; +import java.util.Map; +import com.microsoft.azure.management.apigeneration.Beta; import com.microsoft.azure.management.apigeneration.Fluent; import com.microsoft.azure.management.apigeneration.Method; @@ -71,8 +73,52 @@ public interface RedisCachePremium extends RedisCache { @Method List listPatchSchedules(); + /** + * @return List of patch schedules for current Redis Cache. + */ + @Beta(Beta.SinceVersion.V1_12_0) + List patchSchedules(); + /** * Deletes the patching schedule for Redis Cache. */ + @Method void deletePatchSchedule(); + + /** + * Adds a linked server to the current Redis cache instance. + * + * @param linkedRedisCacheId the resource Id of the Redis instance to link with. + * @param linkedServerLocation the location of the linked Redis instance. + * @param role the role of the linked server. + * @return name of the linked server. + */ + @Beta(Beta.SinceVersion.V1_12_0) + String addLinkedServer(String linkedRedisCacheId, String linkedServerLocation, ReplicationRole role); + + /** + * Removes the linked server from the current Redis cache instance. + * + * @param linkedServerName the name of the linked server. + */ + @Beta(Beta.SinceVersion.V1_12_0) + void removeLinkedServer(String linkedServerName); + + /** + * Gets the role for the linked server of the current Redis cache instance. + * + * @param linkedServerName the name of the linked server. + * @return the role of the linked server. + */ + @Beta(Beta.SinceVersion.V1_12_0) + ReplicationRole getLinkedServerRole(String linkedServerName); + + /** + * Gets the list of linked servers associated with this redis cache. + * + * @return the Roles of the linked servers, indexed by name + */ + @Method + @Beta(Beta.SinceVersion.V1_12_0) + Map listLinkedServers(); } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCaches.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCaches.java index 62286fee2dd..f84c9cda88e 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCaches.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCaches.java @@ -6,7 +6,10 @@ package com.microsoft.azure.management.redis; +import com.microsoft.azure.PagedList; +import com.microsoft.azure.management.apigeneration.Beta; import com.microsoft.azure.management.apigeneration.Fluent; +import com.microsoft.azure.management.redis.implementation.OperationInner; import com.microsoft.azure.management.redis.implementation.RedisInner; import com.microsoft.azure.management.redis.implementation.RedisManager; import com.microsoft.azure.management.resources.fluentcore.arm.collection.SupportsBatchDeletion; @@ -20,6 +23,7 @@ import com.microsoft.azure.management.resources.fluentcore.collection.SupportsDeletingById; import com.microsoft.azure.management.resources.fluentcore.collection.SupportsListing; import com.microsoft.azure.management.resources.fluentcore.model.HasInner; +import rx.Observable; /** * Entry point for Redis Cache management API. @@ -37,4 +41,20 @@ public interface RedisCaches extends SupportsBatchDeletion, HasManager, HasInner { + + /** + * Lists all of the available Redis REST API operations. + * + * @return list of available Redis REST operations. + */ + @Beta(Beta.SinceVersion.V1_12_0) + PagedList listOperations(); + + /** + * Lists all of the available Redis REST API operations. + * + * @return a representation of the future computation of this call + */ + @Beta(Beta.SinceVersion.V1_12_0) + Observable listOperationsAsync(); } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisCreateParametersInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCreateParameters.java similarity index 79% rename from azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisCreateParametersInner.java rename to azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCreateParameters.java index b396067be52..90eb74e927e 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisCreateParametersInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisCreateParameters.java @@ -6,11 +6,9 @@ * Code generated by Microsoft (R) AutoRest Code Generator. */ -package com.microsoft.azure.management.redis.implementation; +package com.microsoft.azure.management.redis; import java.util.Map; -import com.microsoft.azure.management.redis.TlsVersion; -import com.microsoft.azure.management.redis.Sku; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; @@ -19,7 +17,7 @@ * Parameters supplied to the Create Redis operation. */ @JsonFlatten -public class RedisCreateParametersInner { +public class RedisCreateParameters { /** * 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 @@ -107,9 +105,9 @@ public Map redisConfiguration() { * Set the redisConfiguration value. * * @param redisConfiguration the redisConfiguration value to set - * @return the RedisCreateParametersInner object itself. + * @return the RedisCreateParameters object itself. */ - public RedisCreateParametersInner withRedisConfiguration(Map redisConfiguration) { + public RedisCreateParameters withRedisConfiguration(Map redisConfiguration) { this.redisConfiguration = redisConfiguration; return this; } @@ -127,9 +125,9 @@ public Boolean enableNonSslPort() { * Set the enableNonSslPort value. * * @param enableNonSslPort the enableNonSslPort value to set - * @return the RedisCreateParametersInner object itself. + * @return the RedisCreateParameters object itself. */ - public RedisCreateParametersInner withEnableNonSslPort(Boolean enableNonSslPort) { + public RedisCreateParameters withEnableNonSslPort(Boolean enableNonSslPort) { this.enableNonSslPort = enableNonSslPort; return this; } @@ -147,9 +145,9 @@ public Map tenantSettings() { * Set the tenantSettings value. * * @param tenantSettings the tenantSettings value to set - * @return the RedisCreateParametersInner object itself. + * @return the RedisCreateParameters object itself. */ - public RedisCreateParametersInner withTenantSettings(Map tenantSettings) { + public RedisCreateParameters withTenantSettings(Map tenantSettings) { this.tenantSettings = tenantSettings; return this; } @@ -167,9 +165,9 @@ public Integer shardCount() { * Set the shardCount value. * * @param shardCount the shardCount value to set - * @return the RedisCreateParametersInner object itself. + * @return the RedisCreateParameters object itself. */ - public RedisCreateParametersInner withShardCount(Integer shardCount) { + public RedisCreateParameters withShardCount(Integer shardCount) { this.shardCount = shardCount; return this; } @@ -187,9 +185,9 @@ public TlsVersion minimumTlsVersion() { * Set the minimumTlsVersion value. * * @param minimumTlsVersion the minimumTlsVersion value to set - * @return the RedisCreateParametersInner object itself. + * @return the RedisCreateParameters object itself. */ - public RedisCreateParametersInner withMinimumTlsVersion(TlsVersion minimumTlsVersion) { + public RedisCreateParameters withMinimumTlsVersion(TlsVersion minimumTlsVersion) { this.minimumTlsVersion = minimumTlsVersion; return this; } @@ -207,9 +205,9 @@ public Sku sku() { * Set the sku value. * * @param sku the sku value to set - * @return the RedisCreateParametersInner object itself. + * @return the RedisCreateParameters object itself. */ - public RedisCreateParametersInner withSku(Sku sku) { + public RedisCreateParameters withSku(Sku sku) { this.sku = sku; return this; } @@ -227,9 +225,9 @@ public String subnetId() { * Set the subnetId value. * * @param subnetId the subnetId value to set - * @return the RedisCreateParametersInner object itself. + * @return the RedisCreateParameters object itself. */ - public RedisCreateParametersInner withSubnetId(String subnetId) { + public RedisCreateParameters withSubnetId(String subnetId) { this.subnetId = subnetId; return this; } @@ -247,9 +245,9 @@ public String staticIP() { * Set the staticIP value. * * @param staticIP the staticIP value to set - * @return the RedisCreateParametersInner object itself. + * @return the RedisCreateParameters object itself. */ - public RedisCreateParametersInner withStaticIP(String staticIP) { + public RedisCreateParameters withStaticIP(String staticIP) { this.staticIP = staticIP; return this; } @@ -267,9 +265,9 @@ public List zones() { * Set the zones value. * * @param zones the zones value to set - * @return the RedisCreateParametersInner object itself. + * @return the RedisCreateParameters object itself. */ - public RedisCreateParametersInner withZones(List zones) { + public RedisCreateParameters withZones(List zones) { this.zones = zones; return this; } @@ -287,9 +285,9 @@ public String location() { * Set the location value. * * @param location the location value to set - * @return the RedisCreateParametersInner object itself. + * @return the RedisCreateParameters object itself. */ - public RedisCreateParametersInner withLocation(String location) { + public RedisCreateParameters withLocation(String location) { this.location = location; return this; } @@ -307,9 +305,9 @@ public Map tags() { * Set the tags value. * * @param tags the tags value to set - * @return the RedisCreateParametersInner object itself. + * @return the RedisCreateParameters object itself. */ - public RedisCreateParametersInner withTags(Map tags) { + public RedisCreateParameters withTags(Map tags) { this.tags = tags; return this; } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisFirewallRule.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisFirewallRule.java new file mode 100644 index 00000000000..ffd27c534c7 --- /dev/null +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisFirewallRule.java @@ -0,0 +1,46 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + */ + +package com.microsoft.azure.management.redis; + +import com.microsoft.azure.management.apigeneration.Beta; +import com.microsoft.azure.management.apigeneration.LangDefinition; +import com.microsoft.azure.management.apigeneration.LangMethodDefinition; +import com.microsoft.azure.management.redis.implementation.RedisFirewallRuleInner; +import com.microsoft.azure.management.resources.fluentcore.arm.models.ExternalChildResource; +import com.microsoft.azure.management.resources.fluentcore.model.HasInner; + +/** + * The Azure Redis Firewall rule entries are of type RedisFirewallRule. + */ +@LangDefinition(ContainerName = "/Microsoft.Azure.Management.Redis.Fluent.Models") +@Beta(Beta.SinceVersion.V1_12_0) +public interface RedisFirewallRule extends + ExternalChildResource, + HasInner { + /** + * Get the name value. + * + * @return the name value + */ + @LangMethodDefinition(AsType = LangMethodDefinition.LangMethodType.Property) + String name(); + + /** + * Get the startIP value. + * + * @return the startIP value + */ + @LangMethodDefinition(AsType = LangMethodDefinition.LangMethodType.Property) + String startIP(); + + /** + * Get the endIP value. + * + * @return the endIP value + */ + String endIP(); +} diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisFirewallRuleCreateParametersInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisFirewallRuleCreateParameters.java similarity index 76% rename from azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisFirewallRuleCreateParametersInner.java rename to azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisFirewallRuleCreateParameters.java index 35af491c2f6..875a91a9482 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisFirewallRuleCreateParametersInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisFirewallRuleCreateParameters.java @@ -6,7 +6,7 @@ * Code generated by Microsoft (R) AutoRest Code Generator. */ -package com.microsoft.azure.management.redis.implementation; +package com.microsoft.azure.management.redis; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; @@ -15,7 +15,7 @@ * Parameters required for creating a firewall rule on redis cache. */ @JsonFlatten -public class RedisFirewallRuleCreateParametersInner { +public class RedisFirewallRuleCreateParameters { /** * lowest IP address included in the range. */ @@ -41,9 +41,9 @@ public String startIP() { * Set the startIP value. * * @param startIP the startIP value to set - * @return the RedisFirewallRuleCreateParametersInner object itself. + * @return the RedisFirewallRuleCreateParameters object itself. */ - public RedisFirewallRuleCreateParametersInner withStartIP(String startIP) { + public RedisFirewallRuleCreateParameters withStartIP(String startIP) { this.startIP = startIP; return this; } @@ -61,9 +61,9 @@ public String endIP() { * Set the endIP value. * * @param endIP the endIP value to set - * @return the RedisFirewallRuleCreateParametersInner object itself. + * @return the RedisFirewallRuleCreateParameters object itself. */ - public RedisFirewallRuleCreateParametersInner withEndIP(String endIP) { + public RedisFirewallRuleCreateParameters withEndIP(String endIP) { this.endIP = endIP; return this; } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisLinkedServerCreateParametersInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisLinkedServerCreateParameters.java similarity index 76% rename from azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisLinkedServerCreateParametersInner.java rename to azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisLinkedServerCreateParameters.java index c8d8f2c1049..e84572ce670 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisLinkedServerCreateParametersInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisLinkedServerCreateParameters.java @@ -6,9 +6,8 @@ * Code generated by Microsoft (R) AutoRest Code Generator. */ -package com.microsoft.azure.management.redis.implementation; +package com.microsoft.azure.management.redis; -import com.microsoft.azure.management.redis.ReplicationRole; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; @@ -16,7 +15,7 @@ * Parameter required for creating a linked server to redis cache. */ @JsonFlatten -public class RedisLinkedServerCreateParametersInner { +public class RedisLinkedServerCreateParameters { /** * Fully qualified resourceId of the linked redis cache. */ @@ -49,9 +48,9 @@ public String linkedRedisCacheId() { * Set the linkedRedisCacheId value. * * @param linkedRedisCacheId the linkedRedisCacheId value to set - * @return the RedisLinkedServerCreateParametersInner object itself. + * @return the RedisLinkedServerCreateParameters object itself. */ - public RedisLinkedServerCreateParametersInner withLinkedRedisCacheId(String linkedRedisCacheId) { + public RedisLinkedServerCreateParameters withLinkedRedisCacheId(String linkedRedisCacheId) { this.linkedRedisCacheId = linkedRedisCacheId; return this; } @@ -69,9 +68,9 @@ public String linkedRedisCacheLocation() { * Set the linkedRedisCacheLocation value. * * @param linkedRedisCacheLocation the linkedRedisCacheLocation value to set - * @return the RedisLinkedServerCreateParametersInner object itself. + * @return the RedisLinkedServerCreateParameters object itself. */ - public RedisLinkedServerCreateParametersInner withLinkedRedisCacheLocation(String linkedRedisCacheLocation) { + public RedisLinkedServerCreateParameters withLinkedRedisCacheLocation(String linkedRedisCacheLocation) { this.linkedRedisCacheLocation = linkedRedisCacheLocation; return this; } @@ -89,9 +88,9 @@ public ReplicationRole serverRole() { * Set the serverRole value. * * @param serverRole the serverRole value to set - * @return the RedisLinkedServerCreateParametersInner object itself. + * @return the RedisLinkedServerCreateParameters object itself. */ - public RedisLinkedServerCreateParametersInner withServerRole(ReplicationRole serverRole) { + public RedisLinkedServerCreateParameters withServerRole(ReplicationRole serverRole) { this.serverRole = serverRole; return this; } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisPatchSchedule.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisPatchSchedule.java new file mode 100644 index 00000000000..937733cdf41 --- /dev/null +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisPatchSchedule.java @@ -0,0 +1,33 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + */ + +package com.microsoft.azure.management.redis; + +import com.microsoft.azure.management.apigeneration.Beta; +import com.microsoft.azure.management.apigeneration.LangDefinition; +import com.microsoft.azure.management.apigeneration.LangMethodDefinition; +import com.microsoft.azure.management.redis.implementation.RedisPatchScheduleInner; +import com.microsoft.azure.management.resources.fluentcore.arm.models.ExternalChildResource; +import com.microsoft.azure.management.resources.fluentcore.model.HasInner; + +import java.util.List; + +/** + * The Azure Redis Patch Schedule entries are of type ScheduleEntry. + */ +@LangDefinition(ContainerName = "/Microsoft.Azure.Management.Redis.Fluent.Models") +@Beta(Beta.SinceVersion.V1_12_0) +public interface RedisPatchSchedule extends + ExternalChildResource, + HasInner { + /** + * Get the scheduleEntries value. + * + * @return the scheduleEntries value + */ + @LangMethodDefinition(AsType = LangMethodDefinition.LangMethodType.Property) + List scheduleEntries(); +} diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisRebootParametersInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisRebootParameters.java similarity index 76% rename from azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisRebootParametersInner.java rename to azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisRebootParameters.java index 258d3d9aea1..6a7bcefb7a5 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisRebootParametersInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisRebootParameters.java @@ -6,15 +6,14 @@ * Code generated by Microsoft (R) AutoRest Code Generator. */ -package com.microsoft.azure.management.redis.implementation; +package com.microsoft.azure.management.redis; -import com.microsoft.azure.management.redis.RebootType; import com.fasterxml.jackson.annotation.JsonProperty; /** * Specifies which Redis node(s) to reboot. */ -public class RedisRebootParametersInner { +public class RedisRebootParameters { /** * Which Redis node(s) to reboot. Depending on this value data loss is * possible. Possible values include: 'PrimaryNode', 'SecondaryNode', @@ -42,9 +41,9 @@ public RebootType rebootType() { * Set the rebootType value. * * @param rebootType the rebootType value to set - * @return the RedisRebootParametersInner object itself. + * @return the RedisRebootParameters object itself. */ - public RedisRebootParametersInner withRebootType(RebootType rebootType) { + public RedisRebootParameters withRebootType(RebootType rebootType) { this.rebootType = rebootType; return this; } @@ -62,9 +61,9 @@ public Integer shardId() { * Set the shardId value. * * @param shardId the shardId value to set - * @return the RedisRebootParametersInner object itself. + * @return the RedisRebootParameters object itself. */ - public RedisRebootParametersInner withShardId(Integer shardId) { + public RedisRebootParameters withShardId(Integer shardId) { this.shardId = shardId; return this; } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisUpdateParametersInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisUpdateParameters.java similarity index 78% rename from azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisUpdateParametersInner.java rename to azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisUpdateParameters.java index cd0517bd597..70edb08bc03 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisUpdateParametersInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/RedisUpdateParameters.java @@ -6,11 +6,9 @@ * Code generated by Microsoft (R) AutoRest Code Generator. */ -package com.microsoft.azure.management.redis.implementation; +package com.microsoft.azure.management.redis; import java.util.Map; -import com.microsoft.azure.management.redis.TlsVersion; -import com.microsoft.azure.management.redis.Sku; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; @@ -18,7 +16,7 @@ * Parameters supplied to the Update Redis operation. */ @JsonFlatten -public class RedisUpdateParametersInner { +public class RedisUpdateParameters { /** * 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 @@ -78,9 +76,9 @@ public Map redisConfiguration() { * Set the redisConfiguration value. * * @param redisConfiguration the redisConfiguration value to set - * @return the RedisUpdateParametersInner object itself. + * @return the RedisUpdateParameters object itself. */ - public RedisUpdateParametersInner withRedisConfiguration(Map redisConfiguration) { + public RedisUpdateParameters withRedisConfiguration(Map redisConfiguration) { this.redisConfiguration = redisConfiguration; return this; } @@ -98,9 +96,9 @@ public Boolean enableNonSslPort() { * Set the enableNonSslPort value. * * @param enableNonSslPort the enableNonSslPort value to set - * @return the RedisUpdateParametersInner object itself. + * @return the RedisUpdateParameters object itself. */ - public RedisUpdateParametersInner withEnableNonSslPort(Boolean enableNonSslPort) { + public RedisUpdateParameters withEnableNonSslPort(Boolean enableNonSslPort) { this.enableNonSslPort = enableNonSslPort; return this; } @@ -118,9 +116,9 @@ public Map tenantSettings() { * Set the tenantSettings value. * * @param tenantSettings the tenantSettings value to set - * @return the RedisUpdateParametersInner object itself. + * @return the RedisUpdateParameters object itself. */ - public RedisUpdateParametersInner withTenantSettings(Map tenantSettings) { + public RedisUpdateParameters withTenantSettings(Map tenantSettings) { this.tenantSettings = tenantSettings; return this; } @@ -138,9 +136,9 @@ public Integer shardCount() { * Set the shardCount value. * * @param shardCount the shardCount value to set - * @return the RedisUpdateParametersInner object itself. + * @return the RedisUpdateParameters object itself. */ - public RedisUpdateParametersInner withShardCount(Integer shardCount) { + public RedisUpdateParameters withShardCount(Integer shardCount) { this.shardCount = shardCount; return this; } @@ -158,9 +156,9 @@ public TlsVersion minimumTlsVersion() { * Set the minimumTlsVersion value. * * @param minimumTlsVersion the minimumTlsVersion value to set - * @return the RedisUpdateParametersInner object itself. + * @return the RedisUpdateParameters object itself. */ - public RedisUpdateParametersInner withMinimumTlsVersion(TlsVersion minimumTlsVersion) { + public RedisUpdateParameters withMinimumTlsVersion(TlsVersion minimumTlsVersion) { this.minimumTlsVersion = minimumTlsVersion; return this; } @@ -178,9 +176,9 @@ public Sku sku() { * Set the sku value. * * @param sku the sku value to set - * @return the RedisUpdateParametersInner object itself. + * @return the RedisUpdateParameters object itself. */ - public RedisUpdateParametersInner withSku(Sku sku) { + public RedisUpdateParameters withSku(Sku sku) { this.sku = sku; return this; } @@ -198,9 +196,9 @@ public Map tags() { * Set the tags value. * * @param tags the tags value to set - * @return the RedisUpdateParametersInner object itself. + * @return the RedisUpdateParameters object itself. */ - public RedisUpdateParametersInner withTags(Map tags) { + public RedisUpdateParameters withTags(Map tags) { this.tags = tags; return this; } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/ScheduleEntry.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/ScheduleEntry.java index 0d25c83fc32..147d37b235d 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/ScheduleEntry.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/ScheduleEntry.java @@ -8,30 +8,32 @@ package com.microsoft.azure.management.redis; -import com.microsoft.azure.management.redis.implementation.ScheduleEntryInner; import org.joda.time.Period; +import com.fasterxml.jackson.annotation.JsonProperty; /** * Patch schedule entry for a Premium Redis Cache. */ public class ScheduleEntry { - private ScheduleEntryInner inner; + /** + * Day of the week when a cache can be patched. Possible values include: + * 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', + * 'Sunday', 'Everyday', 'Weekend'. + */ + @JsonProperty(value = "dayOfWeek", required = true) + private DayOfWeek dayOfWeek; /** - * Creates an instance of the Patch schedule entry object. - * - * @param inner the inner object + * Start hour after which cache patching can start. */ - public ScheduleEntry(ScheduleEntryInner inner) { - this.inner = inner; - } + @JsonProperty(value = "startHourUtc", required = true) + private int startHourUtc; /** - * Creates an instance of the Patch schedule entry object. + * ISO8601 timespan specifying how much time cache patching can take. */ - public ScheduleEntry() { - this.inner = new ScheduleEntryInner(); - } + @JsonProperty(value = "maintenanceWindow") + private Period maintenanceWindow; /** * Get the dayOfWeek value. @@ -39,17 +41,17 @@ public ScheduleEntry() { * @return the dayOfWeek value */ public DayOfWeek dayOfWeek() { - return this.inner.dayOfWeek(); + return this.dayOfWeek; } /** * Set the dayOfWeek value. * * @param dayOfWeek the dayOfWeek value to set - * @return the ScheduleEntryInner object itself. + * @return the ScheduleEntry object itself. */ public ScheduleEntry withDayOfWeek(DayOfWeek dayOfWeek) { - this.inner.withDayOfWeek(dayOfWeek); + this.dayOfWeek = dayOfWeek; return this; } @@ -59,17 +61,17 @@ public ScheduleEntry withDayOfWeek(DayOfWeek dayOfWeek) { * @return the startHourUtc value */ public int startHourUtc() { - return this.inner.startHourUtc(); + return this.startHourUtc; } /** * Set the startHourUtc value. * * @param startHourUtc the startHourUtc value to set - * @return the ScheduleEntryInner object itself. + * @return the ScheduleEntry object itself. */ public ScheduleEntry withStartHourUtc(int startHourUtc) { - this.inner.withStartHourUtc(startHourUtc); + this.startHourUtc = startHourUtc; return this; } @@ -79,17 +81,17 @@ public ScheduleEntry withStartHourUtc(int startHourUtc) { * @return the maintenanceWindow value */ public Period maintenanceWindow() { - return this.inner.maintenanceWindow(); + return this.maintenanceWindow; } /** * Set the maintenanceWindow value. * * @param maintenanceWindow the maintenanceWindow value to set - * @return the ScheduleEntryInner object itself. + * @return the ScheduleEntry object itself. */ public ScheduleEntry withMaintenanceWindow(Period maintenanceWindow) { - this.inner.withMaintenanceWindow(maintenanceWindow); + this.maintenanceWindow = maintenanceWindow; return this; } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/FirewallRulesInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/FirewallRulesInner.java index 53dfd1de161..9bf22e70489 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/FirewallRulesInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/FirewallRulesInner.java @@ -13,6 +13,7 @@ import com.microsoft.azure.AzureServiceFuture; import com.microsoft.azure.CloudException; import com.microsoft.azure.ListOperationCallback; +import com.microsoft.azure.management.redis.RedisFirewallRuleCreateParameters; import com.microsoft.azure.Page; import com.microsoft.azure.PagedList; import com.microsoft.rest.ServiceCallback; @@ -67,7 +68,7 @@ interface FirewallRulesService { @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.FirewallRules createOrUpdate" }) @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{cacheName}/firewallRules/{ruleName}") - Observable> createOrUpdate(@Path("resourceGroupName") String resourceGroupName, @Path("cacheName") String cacheName, @Path("ruleName") String ruleName, @Path("subscriptionId") String subscriptionId, @Body RedisFirewallRuleCreateParametersInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + Observable> createOrUpdate(@Path("resourceGroupName") String resourceGroupName, @Path("cacheName") String cacheName, @Path("ruleName") String ruleName, @Path("subscriptionId") String subscriptionId, @Body RedisFirewallRuleCreateParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.FirewallRules get" }) @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{cacheName}/firewallRules/{ruleName}") @@ -218,7 +219,7 @@ private ServiceResponse> listByRedisResourceDel * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the RedisFirewallRuleInner object if successful. */ - public RedisFirewallRuleInner createOrUpdate(String resourceGroupName, String cacheName, String ruleName, RedisFirewallRuleCreateParametersInner parameters) { + public RedisFirewallRuleInner createOrUpdate(String resourceGroupName, String cacheName, String ruleName, RedisFirewallRuleCreateParameters parameters) { return createOrUpdateWithServiceResponseAsync(resourceGroupName, cacheName, ruleName, parameters).toBlocking().single().body(); } @@ -233,7 +234,7 @@ public RedisFirewallRuleInner createOrUpdate(String resourceGroupName, String ca * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */ - public ServiceFuture createOrUpdateAsync(String resourceGroupName, String cacheName, String ruleName, RedisFirewallRuleCreateParametersInner parameters, final ServiceCallback serviceCallback) { + public ServiceFuture createOrUpdateAsync(String resourceGroupName, String cacheName, String ruleName, RedisFirewallRuleCreateParameters parameters, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(createOrUpdateWithServiceResponseAsync(resourceGroupName, cacheName, ruleName, parameters), serviceCallback); } @@ -247,7 +248,7 @@ public ServiceFuture createOrUpdateAsync(String resource * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the RedisFirewallRuleInner object */ - public Observable createOrUpdateAsync(String resourceGroupName, String cacheName, String ruleName, RedisFirewallRuleCreateParametersInner parameters) { + public Observable createOrUpdateAsync(String resourceGroupName, String cacheName, String ruleName, RedisFirewallRuleCreateParameters parameters) { return createOrUpdateWithServiceResponseAsync(resourceGroupName, cacheName, ruleName, parameters).map(new Func1, RedisFirewallRuleInner>() { @Override public RedisFirewallRuleInner call(ServiceResponse response) { @@ -266,7 +267,7 @@ public RedisFirewallRuleInner call(ServiceResponse respo * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the RedisFirewallRuleInner object */ - public Observable> createOrUpdateWithServiceResponseAsync(String resourceGroupName, String cacheName, String ruleName, RedisFirewallRuleCreateParametersInner parameters) { + public Observable> createOrUpdateWithServiceResponseAsync(String resourceGroupName, String cacheName, String ruleName, RedisFirewallRuleCreateParameters parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/LinkedServersInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/LinkedServersInner.java index 0e2e3fb640c..dac91dde414 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/LinkedServersInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/LinkedServersInner.java @@ -13,6 +13,7 @@ import com.microsoft.azure.AzureServiceFuture; import com.microsoft.azure.CloudException; import com.microsoft.azure.ListOperationCallback; +import com.microsoft.azure.management.redis.RedisLinkedServerCreateParameters; import com.microsoft.azure.Page; import com.microsoft.azure.PagedList; import com.microsoft.rest.ServiceCallback; @@ -63,11 +64,11 @@ public LinkedServersInner(Retrofit retrofit, RedisManagementClientImpl client) { interface LinkedServersService { @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.LinkedServers create" }) @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/linkedServers/{linkedServerName}") - Observable> create(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("linkedServerName") String linkedServerName, @Path("subscriptionId") String subscriptionId, @Body RedisLinkedServerCreateParametersInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + Observable> create(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("linkedServerName") String linkedServerName, @Path("subscriptionId") String subscriptionId, @Body RedisLinkedServerCreateParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.LinkedServers beginCreate" }) @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/linkedServers/{linkedServerName}") - Observable> beginCreate(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("linkedServerName") String linkedServerName, @Path("subscriptionId") String subscriptionId, @Body RedisLinkedServerCreateParametersInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + Observable> beginCreate(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("linkedServerName") String linkedServerName, @Path("subscriptionId") String subscriptionId, @Body RedisLinkedServerCreateParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.LinkedServers delete" }) @HTTP(path = "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/linkedServers/{linkedServerName}", method = "DELETE", hasBody = true) @@ -99,7 +100,7 @@ interface LinkedServersService { * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the RedisLinkedServerWithPropertiesInner object if successful. */ - public RedisLinkedServerWithPropertiesInner create(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParametersInner parameters) { + public RedisLinkedServerWithPropertiesInner create(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParameters parameters) { return createWithServiceResponseAsync(resourceGroupName, name, linkedServerName, parameters).toBlocking().last().body(); } @@ -114,7 +115,7 @@ public RedisLinkedServerWithPropertiesInner create(String resourceGroupName, Str * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */ - public ServiceFuture createAsync(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParametersInner parameters, final ServiceCallback serviceCallback) { + public ServiceFuture createAsync(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParameters parameters, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(createWithServiceResponseAsync(resourceGroupName, name, linkedServerName, parameters), serviceCallback); } @@ -128,7 +129,7 @@ public ServiceFuture createAsync(String re * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */ - public Observable createAsync(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParametersInner parameters) { + public Observable createAsync(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParameters parameters) { return createWithServiceResponseAsync(resourceGroupName, name, linkedServerName, parameters).map(new Func1, RedisLinkedServerWithPropertiesInner>() { @Override public RedisLinkedServerWithPropertiesInner call(ServiceResponse response) { @@ -147,7 +148,7 @@ public RedisLinkedServerWithPropertiesInner call(ServiceResponse> createWithServiceResponseAsync(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParametersInner parameters) { + public Observable> createWithServiceResponseAsync(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParameters parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } @@ -183,7 +184,7 @@ public Observable> createW * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the RedisLinkedServerWithPropertiesInner object if successful. */ - public RedisLinkedServerWithPropertiesInner beginCreate(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParametersInner parameters) { + public RedisLinkedServerWithPropertiesInner beginCreate(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParameters parameters) { return beginCreateWithServiceResponseAsync(resourceGroupName, name, linkedServerName, parameters).toBlocking().single().body(); } @@ -198,7 +199,7 @@ public RedisLinkedServerWithPropertiesInner beginCreate(String resourceGroupName * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */ - public ServiceFuture beginCreateAsync(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParametersInner parameters, final ServiceCallback serviceCallback) { + public ServiceFuture beginCreateAsync(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParameters parameters, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(beginCreateWithServiceResponseAsync(resourceGroupName, name, linkedServerName, parameters), serviceCallback); } @@ -212,7 +213,7 @@ public ServiceFuture beginCreateAsync(Stri * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the RedisLinkedServerWithPropertiesInner object */ - public Observable beginCreateAsync(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParametersInner parameters) { + public Observable beginCreateAsync(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParameters parameters) { return beginCreateWithServiceResponseAsync(resourceGroupName, name, linkedServerName, parameters).map(new Func1, RedisLinkedServerWithPropertiesInner>() { @Override public RedisLinkedServerWithPropertiesInner call(ServiceResponse response) { @@ -231,7 +232,7 @@ public RedisLinkedServerWithPropertiesInner call(ServiceResponse> beginCreateWithServiceResponseAsync(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParametersInner parameters) { + public Observable> beginCreateWithServiceResponseAsync(String resourceGroupName, String name, String linkedServerName, RedisLinkedServerCreateParameters parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/PatchSchedulesInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/PatchSchedulesInner.java index 0e4d016ca0f..447ed53cab9 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/PatchSchedulesInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/PatchSchedulesInner.java @@ -11,7 +11,12 @@ import com.microsoft.azure.management.resources.fluentcore.collection.InnerSupportsDelete; import retrofit2.Retrofit; import com.google.common.reflect.TypeToken; +import com.microsoft.azure.AzureServiceFuture; import com.microsoft.azure.CloudException; +import com.microsoft.azure.ListOperationCallback; +import com.microsoft.azure.management.redis.ScheduleEntry; +import com.microsoft.azure.Page; +import com.microsoft.azure.PagedList; import com.microsoft.rest.ServiceCallback; import com.microsoft.rest.ServiceFuture; import com.microsoft.rest.ServiceResponse; @@ -27,6 +32,7 @@ import retrofit2.http.Path; import retrofit2.http.PUT; import retrofit2.http.Query; +import retrofit2.http.Url; import retrofit2.Response; import rx.functions.Func1; import rx.Observable; @@ -57,6 +63,10 @@ public PatchSchedulesInner(Retrofit retrofit, RedisManagementClientImpl client) * used by Retrofit to perform actually REST calls. */ interface PatchSchedulesService { + @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.PatchSchedules listByRedisResource" }) + @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{cacheName}/patchSchedules") + Observable> listByRedisResource(@Path("subscriptionId") String subscriptionId, @Path("resourceGroupName") String resourceGroupName, @Path("cacheName") String cacheName, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.PatchSchedules createOrUpdate" }) @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/patchSchedules/{default}") Observable> createOrUpdate(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("default") String defaultParameter, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Body RedisPatchScheduleInner parameters, @Header("User-Agent") String userAgent); @@ -69,6 +79,133 @@ interface PatchSchedulesService { @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/patchSchedules/{default}") Observable> get(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("default") String defaultParameter, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.PatchSchedules listByRedisResourceNext" }) + @GET + Observable> listByRedisResourceNext(@Url String nextUrl, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + + } + + /** + * Gets all patch schedules in the specified redis cache (there is only one). + * + * @param resourceGroupName The name of the resource group. + * @param cacheName The name of the Redis cache. + * @throws IllegalArgumentException thrown if parameters fail the validation + * @throws CloudException thrown if the request is rejected by server + * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent + * @return the PagedList<RedisPatchScheduleInner> object if successful. + */ + public PagedList listByRedisResource(final String resourceGroupName, final String cacheName) { + ServiceResponse> response = listByRedisResourceSinglePageAsync(resourceGroupName, cacheName).toBlocking().single(); + return new PagedList(response.body()) { + @Override + public Page nextPage(String nextPageLink) { + return listByRedisResourceNextSinglePageAsync(nextPageLink).toBlocking().single().body(); + } + }; + } + + /** + * Gets all patch schedules in the specified redis cache (there is only one). + * + * @param resourceGroupName The name of the resource group. + * @param cacheName The name of the Redis cache. + * @param serviceCallback the async ServiceCallback to handle successful and failed responses. + * @throws IllegalArgumentException thrown if parameters fail the validation + * @return the {@link ServiceFuture} object + */ + public ServiceFuture> listByRedisResourceAsync(final String resourceGroupName, final String cacheName, final ListOperationCallback serviceCallback) { + return AzureServiceFuture.fromPageResponse( + listByRedisResourceSinglePageAsync(resourceGroupName, cacheName), + new Func1>>>() { + @Override + public Observable>> call(String nextPageLink) { + return listByRedisResourceNextSinglePageAsync(nextPageLink); + } + }, + serviceCallback); + } + + /** + * Gets all patch schedules in the specified redis cache (there is only one). + * + * @param resourceGroupName The name of the resource group. + * @param cacheName The name of the Redis cache. + * @throws IllegalArgumentException thrown if parameters fail the validation + * @return the observable to the PagedList<RedisPatchScheduleInner> object + */ + public Observable> listByRedisResourceAsync(final String resourceGroupName, final String cacheName) { + return listByRedisResourceWithServiceResponseAsync(resourceGroupName, cacheName) + .map(new Func1>, Page>() { + @Override + public Page call(ServiceResponse> response) { + return response.body(); + } + }); + } + + /** + * Gets all patch schedules in the specified redis cache (there is only one). + * + * @param resourceGroupName The name of the resource group. + * @param cacheName The name of the Redis cache. + * @throws IllegalArgumentException thrown if parameters fail the validation + * @return the observable to the PagedList<RedisPatchScheduleInner> object + */ + public Observable>> listByRedisResourceWithServiceResponseAsync(final String resourceGroupName, final String cacheName) { + return listByRedisResourceSinglePageAsync(resourceGroupName, cacheName) + .concatMap(new Func1>, Observable>>>() { + @Override + public Observable>> call(ServiceResponse> page) { + String nextPageLink = page.body().nextPageLink(); + if (nextPageLink == null) { + return Observable.just(page); + } + return Observable.just(page).concatWith(listByRedisResourceNextWithServiceResponseAsync(nextPageLink)); + } + }); + } + + /** + * Gets all patch schedules in the specified redis cache (there is only one). + * + ServiceResponse> * @param resourceGroupName The name of the resource group. + ServiceResponse> * @param cacheName The name of the Redis cache. + * @throws IllegalArgumentException thrown if parameters fail the validation + * @return the PagedList<RedisPatchScheduleInner> object wrapped in {@link ServiceResponse} if successful. + */ + public Observable>> listByRedisResourceSinglePageAsync(final String resourceGroupName, final String cacheName) { + if (this.client.subscriptionId() == null) { + throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); + } + if (resourceGroupName == null) { + throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); + } + if (cacheName == null) { + throw new IllegalArgumentException("Parameter cacheName is required and cannot be null."); + } + if (this.client.apiVersion() == null) { + throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); + } + return service.listByRedisResource(this.client.subscriptionId(), resourceGroupName, cacheName, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) + .flatMap(new Func1, Observable>>>() { + @Override + public Observable>> call(Response response) { + try { + ServiceResponse> result = listByRedisResourceDelegate(response); + return Observable.just(new ServiceResponse>(result.body(), result.response())); + } catch (Throwable t) { + return Observable.error(t); + } + } + }); + } + + private ServiceResponse> listByRedisResourceDelegate(Response response) throws CloudException, IOException, IllegalArgumentException { + return this.client.restClient().responseBuilderFactory()., CloudException>newInstance(this.client.serializerAdapter()) + .register(200, new TypeToken>() { }.getType()) + .registerError(CloudException.class) + .build(response); } /** @@ -82,7 +219,7 @@ interface PatchSchedulesService { * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the RedisPatchScheduleInner object if successful. */ - public RedisPatchScheduleInner createOrUpdate(String resourceGroupName, String name, List scheduleEntries) { + public RedisPatchScheduleInner createOrUpdate(String resourceGroupName, String name, List scheduleEntries) { return createOrUpdateWithServiceResponseAsync(resourceGroupName, name, scheduleEntries).toBlocking().single().body(); } @@ -96,7 +233,7 @@ public RedisPatchScheduleInner createOrUpdate(String resourceGroupName, String n * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */ - public ServiceFuture createOrUpdateAsync(String resourceGroupName, String name, List scheduleEntries, final ServiceCallback serviceCallback) { + public ServiceFuture createOrUpdateAsync(String resourceGroupName, String name, List scheduleEntries, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(createOrUpdateWithServiceResponseAsync(resourceGroupName, name, scheduleEntries), serviceCallback); } @@ -109,7 +246,7 @@ public ServiceFuture createOrUpdateAsync(String resourc * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the RedisPatchScheduleInner object */ - public Observable createOrUpdateAsync(String resourceGroupName, String name, List scheduleEntries) { + public Observable createOrUpdateAsync(String resourceGroupName, String name, List scheduleEntries) { return createOrUpdateWithServiceResponseAsync(resourceGroupName, name, scheduleEntries).map(new Func1, RedisPatchScheduleInner>() { @Override public RedisPatchScheduleInner call(ServiceResponse response) { @@ -127,7 +264,7 @@ public RedisPatchScheduleInner call(ServiceResponse res * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the RedisPatchScheduleInner object */ - public Observable> createOrUpdateWithServiceResponseAsync(String resourceGroupName, String name, List scheduleEntries) { + public Observable> createOrUpdateWithServiceResponseAsync(String resourceGroupName, String name, List scheduleEntries) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } @@ -343,4 +480,115 @@ private ServiceResponse getDelegate(Response listByRedisResourceNext(final String nextPageLink) { + ServiceResponse> response = listByRedisResourceNextSinglePageAsync(nextPageLink).toBlocking().single(); + return new PagedList(response.body()) { + @Override + public Page nextPage(String nextPageLink) { + return listByRedisResourceNextSinglePageAsync(nextPageLink).toBlocking().single().body(); + } + }; + } + + /** + * Gets all patch schedules in the specified redis cache (there is only one). + * + * @param nextPageLink The NextLink from the previous successful call to List operation. + * @param serviceFuture the ServiceFuture object tracking the Retrofit calls + * @param serviceCallback the async ServiceCallback to handle successful and failed responses. + * @throws IllegalArgumentException thrown if parameters fail the validation + * @return the {@link ServiceFuture} object + */ + public ServiceFuture> listByRedisResourceNextAsync(final String nextPageLink, final ServiceFuture> serviceFuture, final ListOperationCallback serviceCallback) { + return AzureServiceFuture.fromPageResponse( + listByRedisResourceNextSinglePageAsync(nextPageLink), + new Func1>>>() { + @Override + public Observable>> call(String nextPageLink) { + return listByRedisResourceNextSinglePageAsync(nextPageLink); + } + }, + serviceCallback); + } + + /** + * Gets all patch schedules in the specified redis cache (there is only one). + * + * @param nextPageLink The NextLink from the previous successful call to List operation. + * @throws IllegalArgumentException thrown if parameters fail the validation + * @return the observable to the PagedList<RedisPatchScheduleInner> object + */ + public Observable> listByRedisResourceNextAsync(final String nextPageLink) { + return listByRedisResourceNextWithServiceResponseAsync(nextPageLink) + .map(new Func1>, Page>() { + @Override + public Page call(ServiceResponse> response) { + return response.body(); + } + }); + } + + /** + * Gets all patch schedules in the specified redis cache (there is only one). + * + * @param nextPageLink The NextLink from the previous successful call to List operation. + * @throws IllegalArgumentException thrown if parameters fail the validation + * @return the observable to the PagedList<RedisPatchScheduleInner> object + */ + public Observable>> listByRedisResourceNextWithServiceResponseAsync(final String nextPageLink) { + return listByRedisResourceNextSinglePageAsync(nextPageLink) + .concatMap(new Func1>, Observable>>>() { + @Override + public Observable>> call(ServiceResponse> page) { + String nextPageLink = page.body().nextPageLink(); + if (nextPageLink == null) { + return Observable.just(page); + } + return Observable.just(page).concatWith(listByRedisResourceNextWithServiceResponseAsync(nextPageLink)); + } + }); + } + + /** + * Gets all patch schedules in the specified redis cache (there is only one). + * + ServiceResponse> * @param nextPageLink The NextLink from the previous successful call to List operation. + * @throws IllegalArgumentException thrown if parameters fail the validation + * @return the PagedList<RedisPatchScheduleInner> object wrapped in {@link ServiceResponse} if successful. + */ + public Observable>> listByRedisResourceNextSinglePageAsync(final String nextPageLink) { + if (nextPageLink == null) { + throw new IllegalArgumentException("Parameter nextPageLink is required and cannot be null."); + } + String nextUrl = String.format("%s", nextPageLink); + return service.listByRedisResourceNext(nextUrl, this.client.acceptLanguage(), this.client.userAgent()) + .flatMap(new Func1, Observable>>>() { + @Override + public Observable>> call(Response response) { + try { + ServiceResponse> result = listByRedisResourceNextDelegate(response); + return Observable.just(new ServiceResponse>(result.body(), result.response())); + } catch (Throwable t) { + return Observable.error(t); + } + } + }); + } + + private ServiceResponse> listByRedisResourceNextDelegate(Response response) throws CloudException, IOException, IllegalArgumentException { + return this.client.restClient().responseBuilderFactory()., CloudException>newInstance(this.client.serializerAdapter()) + .register(200, new TypeToken>() { }.getType()) + .registerError(CloudException.class) + .build(response); + } + } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisCacheImpl.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisCacheImpl.java index 8c68c3eacc6..2fdb53d6778 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisCacheImpl.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisCacheImpl.java @@ -6,27 +6,39 @@ package com.microsoft.azure.management.redis.implementation; -import com.google.common.base.Function; -import com.google.common.collect.Lists; +import com.microsoft.azure.PagedList; import com.microsoft.azure.management.apigeneration.LangDefinition; import com.microsoft.azure.management.apigeneration.Method; import com.microsoft.azure.management.redis.DayOfWeek; +import com.microsoft.azure.management.redis.ExportRDBParameters; +import com.microsoft.azure.management.redis.ImportRDBParameters; +import com.microsoft.azure.management.redis.ProvisioningState; import com.microsoft.azure.management.redis.RebootType; import com.microsoft.azure.management.redis.RedisAccessKeys; import com.microsoft.azure.management.redis.RedisCache; import com.microsoft.azure.management.redis.RedisCachePremium; +import com.microsoft.azure.management.redis.RedisCreateParameters; +import com.microsoft.azure.management.redis.RedisFirewallRule; import com.microsoft.azure.management.redis.RedisKeyType; +import com.microsoft.azure.management.redis.RedisLinkedServerCreateParameters; +import com.microsoft.azure.management.redis.RedisRebootParameters; +import com.microsoft.azure.management.redis.RedisUpdateParameters; +import com.microsoft.azure.management.redis.ReplicationRole; import com.microsoft.azure.management.redis.Sku; import com.microsoft.azure.management.redis.ScheduleEntry; import com.microsoft.azure.management.redis.SkuFamily; import com.microsoft.azure.management.redis.SkuName; +import com.microsoft.azure.management.redis.TlsVersion; +import com.microsoft.azure.management.resources.fluentcore.arm.ResourceUtils; import com.microsoft.azure.management.resources.fluentcore.arm.models.HasId; import com.microsoft.azure.management.resources.fluentcore.arm.models.implementation.GroupableResourceImpl; import com.microsoft.azure.management.resources.fluentcore.utils.SdkContext; import com.microsoft.azure.management.resources.fluentcore.utils.Utils; import org.joda.time.Period; +import rx.Completable; import rx.Observable; import rx.functions.Action1; +import rx.functions.Func1; import java.util.ArrayList; import java.util.Collections; @@ -50,16 +62,46 @@ class RedisCacheImpl RedisCache.Definition, RedisCache.Update { private RedisAccessKeys cachedAccessKeys; - private RedisCreateParametersInner createParameters; - private RedisUpdateParametersInner updateParameters; - private Map scheduleEntries; + private RedisCreateParameters createParameters; + private RedisUpdateParameters updateParameters; + private RedisPatchSchedulesImpl patchSchedules; + private RedisFirewallRulesImpl firewallRules; + private boolean patchScheduleAdded; RedisCacheImpl(String name, RedisResourceInner innerModel, final RedisManager redisManager) { super(name, innerModel, redisManager); - this.createParameters = new RedisCreateParametersInner(); - this.scheduleEntries = new TreeMap<>(); + this.createParameters = new RedisCreateParameters(); + this.patchSchedules = new RedisPatchSchedulesImpl(this); + this.firewallRules = new RedisFirewallRulesImpl(this); + this.patchSchedules.enablePostRunMode(); + this.firewallRules.enablePostRunMode(); + this.patchScheduleAdded = false; + } + + @Override + public Map firewallRules() { + return this.firewallRules.rulesAsMap(); + } + + @Override + public List patchSchedules() { + List patchSchedules = listPatchSchedules(); + if (patchSchedules == null) { + return new ArrayList<>(); + } + return patchSchedules; + } + + @Override + public List listPatchSchedules() { + // for backward compatibility this method should return Null when there is no records for Patch Schedule + RedisPatchScheduleImpl patchSchedule = this.patchSchedules.getPatchSchedule(); + if (patchSchedule == null) { + return null; + } + return patchSchedule.scheduleEntries(); } @Override @@ -112,6 +154,11 @@ public String staticIP() { return this.inner().staticIP(); } + @Override + public TlsVersion minimumTlsVersion() { + return this.inner().minimumTlsVersion(); + } + @Override public Map redisConfiguration() { return Collections.unmodifiableMap(this.inner().redisConfiguration()); @@ -166,14 +213,14 @@ public RedisAccessKeys regenerateKey(RedisKeyType keyType) { @Override public void forceReboot(RebootType rebootType) { - RedisRebootParametersInner parameters = new RedisRebootParametersInner() + RedisRebootParameters parameters = new RedisRebootParameters() .withRebootType(rebootType); this.manager().inner().redis().forceReboot(this.resourceGroupName(), this.name(), parameters); } @Override public void forceReboot(RebootType rebootType, int shardId) { - RedisRebootParametersInner parameters = new RedisRebootParametersInner() + RedisRebootParameters parameters = new RedisRebootParameters() .withRebootType(rebootType) .withShardId(shardId); this.manager().inner().redis().forceReboot(this.resourceGroupName(), this.name(), parameters); @@ -181,14 +228,14 @@ public void forceReboot(RebootType rebootType, int shardId) { @Override public void importData(List files) { - ImportRDBParametersInner parameters = new ImportRDBParametersInner() + ImportRDBParameters parameters = new ImportRDBParameters() .withFiles(files); this.manager().inner().redis().importData(this.resourceGroupName(), this.name(), parameters); } @Override public void importData(List files, String fileFormat) { - ImportRDBParametersInner parameters = new ImportRDBParametersInner() + ImportRDBParameters parameters = new ImportRDBParameters() .withFiles(files) .withFormat(fileFormat); this.manager().inner().redis().importData(this.resourceGroupName(), this.name(), parameters); @@ -196,7 +243,7 @@ public void importData(List files, String fileFormat) { @Override public void exportData(String containerSASUrl, String prefix) { - ExportRDBParametersInner parameters = new ExportRDBParametersInner() + ExportRDBParameters parameters = new ExportRDBParameters() .withContainer(containerSASUrl) .withPrefix(prefix); this.manager().inner().redis().exportData(this.resourceGroupName(), this.name(), parameters); @@ -204,18 +251,13 @@ public void exportData(String containerSASUrl, String prefix) { @Override public void exportData(String containerSASUrl, String prefix, String fileFormat) { - ExportRDBParametersInner parameters = new ExportRDBParametersInner() + ExportRDBParameters parameters = new ExportRDBParameters() .withContainer(containerSASUrl) .withPrefix(prefix) .withFormat(fileFormat); this.manager().inner().redis().exportData(this.resourceGroupName(), this.name(), parameters); } - @Override - protected Observable getInnerAsync() { - return this.manager().inner().redis().getByResourceGroupAsync(this.resourceGroupName(), this.name()); - } - @Override public RedisCacheImpl withNonSslPort() { if (isInCreateMode()) { @@ -260,6 +302,42 @@ public RedisCacheImpl withRedisConfiguration(String key, String value) { return this; } + @Override + public RedisCacheImpl withFirewallRule(String name, String lowestIp, String highestIp) { + RedisFirewallRuleImpl rule = this.firewallRules.defineInlineFirewallRule(name); + rule.inner().withStartIP(lowestIp); + rule.inner().withEndIP(highestIp); + return this.withFirewallRule(rule); + } + + @Override + public RedisCacheImpl withFirewallRule(RedisFirewallRule rule) { + this.firewallRules.addRule((RedisFirewallRuleImpl) rule); + return this; + } + + @Override + public RedisCacheImpl withMinimumTlsVersion(TlsVersion tlsVersion) { + if (isInCreateMode()) { + createParameters.withMinimumTlsVersion(tlsVersion); + } else { + updateParameters.withMinimumTlsVersion(tlsVersion); + } + return this; + } + + @Override + public RedisCacheImpl withoutMinimumTlsVersion() { + updateParameters.withMinimumTlsVersion(null); + return this; + } + + @Override + public RedisCacheImpl withoutFirewallRule(String name) { + this.firewallRules.removeRule(name); + return this; + } + @Override public RedisCacheImpl withoutRedisConfiguration() { if (updateParameters.redisConfiguration() != null) { @@ -280,6 +358,16 @@ public RedisCacheImpl withoutRedisConfiguration(String key) { public RedisCacheImpl withSubnet(HasId networkResource, String subnetName) { if (networkResource != null) { String subnetId = networkResource.id() + "/subnets/" + subnetName; + return withSubnet(subnetId); + } else { + createParameters.withSubnetId(null); + } + return this; + } + + @Override + public RedisCacheImpl withSubnet(String subnetId) { + if (subnetId != null) { if (isInCreateMode()) { createParameters.withSubnetId(subnetId); } else { @@ -418,7 +506,7 @@ public RedisCacheImpl withPatchSchedule(DayOfWeek dayOfWeek, int startHourUtc, P @Override public RedisCacheImpl withPatchSchedule(List scheduleEntries) { - this.scheduleEntries.clear(); + this.patchSchedules.clear(); for (ScheduleEntry entry : scheduleEntries) { this.withPatchSchedule(entry); } @@ -427,47 +515,73 @@ public RedisCacheImpl withPatchSchedule(List scheduleEntries) { @Override public RedisCacheImpl withPatchSchedule(ScheduleEntry scheduleEntry) { - this.scheduleEntries.put(scheduleEntry.dayOfWeek(), scheduleEntry); + RedisPatchScheduleImpl psch = null; + if (this.patchSchedules.patchSchedulesAsMap().isEmpty()) { + psch = this.patchSchedules.defineInlinePatchSchedule(); + this.patchScheduleAdded = true; + psch.inner().withScheduleEntries(new ArrayList()); + this.patchSchedules.addPatchSchedule(psch); + } else if (!this.patchScheduleAdded) { + psch = this.patchSchedules.updateInlinePatchSchedule(); + } else { + psch = this.patchSchedules.getPatchSchedule(); + } + + psch.inner().scheduleEntries().add(scheduleEntry); return this; } @Override - public List listPatchSchedules() { - RedisPatchScheduleInner patchSchedules = this.manager().inner().patchSchedules().get(resourceGroupName(), name()); - if (patchSchedules != null) { - return Lists.transform(patchSchedules.scheduleEntries(), - new Function() { - public ScheduleEntry apply(ScheduleEntryInner entryInner) { - return new ScheduleEntry(entryInner); - } - }); + public RedisCacheImpl withoutPatchSchedule() { + if (this.patchSchedules.patchSchedulesAsMap().isEmpty()) { + return this; + } else { + this.patchSchedules.deleteInlinePatchSchedule(); } - return null; + return this; } @Override public void deletePatchSchedule() { - this.manager().inner().patchSchedules().delete(resourceGroupName(), name()); - } - - private void updatePatchSchedules() { - if (this.scheduleEntries != null && !this.scheduleEntries.isEmpty()) { - RedisPatchScheduleInner parameters = new RedisPatchScheduleInner() - .withScheduleEntries(new ArrayList()); - for (ScheduleEntry entry : this.scheduleEntries.values()) { - parameters.scheduleEntries().add(new ScheduleEntryInner() - .withDayOfWeek(entry.dayOfWeek()) - .withMaintenanceWindow(entry.maintenanceWindow()) - .withStartHourUtc(entry.startHourUtc())); + this.patchSchedules.removePatchSchedule(); + this.patchSchedules.refresh(); + } + + @Override + public Observable refreshAsync() { + return super.refreshAsync().map(new Func1() { + @Override + public RedisCache call(RedisCache redisCache) { + RedisCacheImpl impl = (RedisCacheImpl) redisCache; + impl.firewallRules.refresh(); + impl.patchSchedules.refresh(); + return impl; } - this.manager().inner().patchSchedules().createOrUpdate(resourceGroupName(), name(), parameters.scheduleEntries()); + }); + } + + @Override + protected Observable getInnerAsync() { + return this.manager().inner().redis().getByResourceGroupAsync(this.resourceGroupName(), this.name()); + } + + @Override + public Completable afterPostRunAsync(final boolean isGroupFaulted) { + this.firewallRules.clear(); + this.patchSchedules.clear(); + this.patchScheduleAdded = false; + if (isGroupFaulted) { + return Completable.complete(); + } else { + return this.refreshAsync().toCompletable(); } } @Override public RedisCacheImpl update() { - this.updateParameters = new RedisUpdateParametersInner(); - this.scheduleEntries = new TreeMap<>(); + this.updateParameters = new RedisUpdateParameters(); + this.patchSchedules.enableCommitMode(); + this.firewallRules.enableCommitMode(); return super.update(); } @@ -485,8 +599,32 @@ public void call(RedisCache redisCache) { RedisResourceInner innerResource = self.manager().inner().redis().getByResourceGroup(resourceGroupName(), name()); ((RedisCacheImpl) redisCache).setInner(innerResource); self.setInner(innerResource); + self.patchScheduleAdded = false; } - updatePatchSchedules(); + } + }) + .flatMap(new Func1>() { + @Override + public Observable call(RedisCache redisCache) { + return self.patchSchedules.commitAndGetAllAsync() + .map(new Func1, RedisCache>() { + @Override + public RedisCache call(List redisPatchSchedules) { + return self; + } + }); + } + }) + .flatMap(new Func1>() { + @Override + public Observable call(RedisCache redisCache) { + return self.firewallRules.commitAndGetAllAsync() + .map(new Func1, RedisCache>() { + @Override + public RedisCache call(List redisFirewallRules) { + return self; + } + }); } }); } @@ -495,14 +633,75 @@ public void call(RedisCache redisCache) { public Observable createResourceAsync() { createParameters.withLocation(this.regionName()); createParameters.withTags(this.inner().getTags()); + this.patchScheduleAdded = false; return this.manager().inner().redis().createAsync(this.resourceGroupName(), this.name(), createParameters) - .map(innerToFluentMap(this)) - .doOnNext(new Action1() { - @Override - public void call(RedisCache redisCache) { - updatePatchSchedules(); - } - }); + .map(innerToFluentMap(this)); + } + + @Override + public String addLinkedServer(String linkedRedisCacheId, String linkedServerLocation, ReplicationRole role) { + String linkedRedisName = ResourceUtils.nameFromResourceId(linkedRedisCacheId); + RedisLinkedServerCreateParameters params = new RedisLinkedServerCreateParameters() + .withLinkedRedisCacheId(linkedRedisCacheId) + .withLinkedRedisCacheLocation(linkedServerLocation) + .withServerRole(role); + RedisLinkedServerWithPropertiesInner linkedServerInner = this.manager().inner().linkedServers().create( + this.resourceGroupName(), + this.name(), + linkedRedisName, + params); + return linkedServerInner.name(); + } + + @Override + public void removeLinkedServer(String linkedServerName) { + RedisLinkedServerWithPropertiesInner linkedServer = this.manager().inner().linkedServers().get(this.resourceGroupName(), this.name(), linkedServerName); + + this.manager().inner().linkedServers().delete( + this.resourceGroupName(), + this.name(), + linkedServerName); + RedisResourceInner innerLinkedResource = null; + RedisResourceInner innerResource = null; + while (innerLinkedResource == null + || innerLinkedResource.provisioningState() != ProvisioningState.SUCCEEDED + || innerResource == null + || innerResource.provisioningState() != ProvisioningState.SUCCEEDED) { + SdkContext.sleep(30 * 1000); + + innerLinkedResource = this.manager().inner().redis().getByResourceGroup( + ResourceUtils.groupFromResourceId(linkedServer.id()), + ResourceUtils.nameFromResourceId(linkedServer.id())); + + innerResource = this.manager().inner().redis().getByResourceGroup(resourceGroupName(), name()); + } + } + + @Override + public ReplicationRole getLinkedServerRole(String linkedServerName) { + RedisLinkedServerWithPropertiesInner linkedServer = this.manager().inner().linkedServers().get( + this.resourceGroupName(), + this.name(), + linkedServerName); + if (linkedServer == null) { + throw new IllegalArgumentException("Server returned `null` value for Linked Server '" + + linkedServerName + "' for Redis Cache '" + this.name() + + "' in Resource Group '" + this.resourceGroupName() + "'."); + } + return linkedServer.serverRole(); + } + + @Override + public Map listLinkedServers() { + Map result = new TreeMap<>(); + PagedList paginatedResponse = this.manager().inner().linkedServers().list( + this.resourceGroupName(), + this.name()); + + for (RedisLinkedServerWithPropertiesInner linkedServer : paginatedResponse) { + result.put(linkedServer.name(), linkedServer.serverRole()); + } + return result; } } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisCachesImpl.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisCachesImpl.java index 18d2c3e6405..e8b203ea901 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisCachesImpl.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisCachesImpl.java @@ -6,10 +6,14 @@ package com.microsoft.azure.management.redis.implementation; +import com.microsoft.azure.Page; +import com.microsoft.azure.PagedList; import com.microsoft.azure.management.apigeneration.LangDefinition; import com.microsoft.azure.management.redis.RedisCache; import com.microsoft.azure.management.redis.RedisCaches; import com.microsoft.azure.management.resources.fluentcore.arm.collection.implementation.TopLevelModifiableResourcesImpl; +import rx.Observable; +import rx.functions.Func1; /** * The implementation of RedisCaches and its parent interfaces. @@ -51,4 +55,19 @@ protected RedisCacheImpl wrapModel(RedisResourceInner redisResourceInner) { redisResourceInner, this.manager()); } + + @Override + public PagedList listOperations() { + return this.manager().inner().operations().list(); + } + + @Override + public Observable listOperationsAsync() { + return this.manager().inner().operations().listAsync().flatMap(new Func1, Observable>() { + @Override + public Observable call(Page pageInner) { + return Observable.from(pageInner.items()); + } + }); + } } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisFirewallRuleImpl.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisFirewallRuleImpl.java new file mode 100644 index 00000000000..ff2af995418 --- /dev/null +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisFirewallRuleImpl.java @@ -0,0 +1,94 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + */ + +package com.microsoft.azure.management.redis.implementation; + +import com.microsoft.azure.management.apigeneration.LangDefinition; +import com.microsoft.azure.management.redis.RedisCache; +import com.microsoft.azure.management.redis.RedisFirewallRule; +import com.microsoft.azure.management.redis.RedisFirewallRuleCreateParameters; +import com.microsoft.azure.management.resources.fluentcore.arm.models.implementation.ExternalChildResourceImpl; +import rx.Observable; +import rx.functions.Func1; + +/** + * The Azure {@link RedisFirewallRule} wrapper class implementation. + */ +@LangDefinition +class RedisFirewallRuleImpl extends + ExternalChildResourceImpl + implements RedisFirewallRule { + + RedisFirewallRuleImpl(String name, RedisCacheImpl parent, RedisFirewallRuleInner innerObject) { + super(getChildName(name, parent.name()), parent, innerObject); + } + + @Override + public String id() { + return this.inner().id(); + } + + @Override + public String startIP() { + return this.inner().startIP(); + } + + @Override + public String endIP() { + return this.inner().endIP(); + } + + @Override + public Observable createResourceAsync() { + final RedisFirewallRuleImpl self = this; + RedisFirewallRuleCreateParameters parameters = new RedisFirewallRuleCreateParameters() + .withStartIP(this.startIP()) + .withEndIP(this.endIP()); + return this.parent().manager().inner().firewallRules().createOrUpdateAsync( + this.parent().resourceGroupName(), + this.parent().name(), + this.name(), + parameters) + .map(new Func1() { + @Override + public RedisFirewallRule call(RedisFirewallRuleInner redisFirewallRuleInner) { + self.setInner(redisFirewallRuleInner); + return self; + } + }); + } + + @Override + public Observable updateResourceAsync() { + return this.createResourceAsync(); + } + + @Override + public Observable deleteResourceAsync() { + return this.parent().manager().inner().firewallRules().deleteAsync(this.parent().resourceGroupName(), + this.parent().name(), + this.name()); + } + + @Override + protected Observable getInnerAsync() { + return this.parent().manager().inner().firewallRules().getAsync(this.parent().resourceGroupName(), + this.parent().name(), + this.name()); + } + + private static String getChildName(String name, String parentName) { + if (name != null + && name.indexOf("/") != -1) { + // rule name consist of "parent/child" name syntax but delete/update/get should be called only on child name + return name.substring(parentName.length() + 1); + } + return name; + } +} diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisFirewallRulesImpl.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisFirewallRulesImpl.java new file mode 100644 index 00000000000..790da7d492e --- /dev/null +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisFirewallRulesImpl.java @@ -0,0 +1,74 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + */ + +package com.microsoft.azure.management.redis.implementation; + +import com.microsoft.azure.management.apigeneration.LangDefinition; +import com.microsoft.azure.management.redis.RedisCache; +import com.microsoft.azure.management.redis.RedisFirewallRule; +import com.microsoft.azure.management.resources.fluentcore.arm.collection.implementation.ExternalChildResourcesCachedImpl; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * Represents a Redis firewall rules collection associated with a Redis cache instance. + */ +@LangDefinition +class RedisFirewallRulesImpl extends + ExternalChildResourcesCachedImpl { + + RedisFirewallRulesImpl(RedisCacheImpl parent) { + super(parent, parent.taskGroup(), "FirewallRule"); + if (parent.id() != null) { + this.cacheCollection(); + } + } + + Map rulesAsMap() { + Map result = new HashMap<>(); + for (Map.Entry entry : this.collection().entrySet()) { + RedisFirewallRuleImpl endpoint = entry.getValue(); + result.put(entry.getKey(), endpoint); + } + return Collections.unmodifiableMap(result); + } + + public void addRule(RedisFirewallRuleImpl rule) { + this.addChildResource(rule); + } + + public void removeRule(String name) { + this.prepareInlineRemove(name); + } + + public RedisFirewallRuleImpl defineInlineFirewallRule(String name) { + return prepareInlineDefine(name); + } + + @Override + protected List listChildResources() { + List childResources = new ArrayList<>(); + for (RedisFirewallRuleInner firewallRule : this.parent().manager().inner().firewallRules().listByRedisResource( + this.parent().resourceGroupName(), + this.parent().name())) { + childResources.add(new RedisFirewallRuleImpl(firewallRule.name(), this.parent(), firewallRule)); + } + return Collections.unmodifiableList(childResources); + } + + @Override + protected RedisFirewallRuleImpl newChildResource(String name) { + return new RedisFirewallRuleImpl(name, this.parent(), new RedisFirewallRuleInner()); + } +} diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisInner.java index fcf726c6596..23b3fe7746c 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisInner.java @@ -16,8 +16,14 @@ import com.microsoft.azure.AzureServiceFuture; import com.microsoft.azure.CloudException; import com.microsoft.azure.ListOperationCallback; +import com.microsoft.azure.management.redis.CheckNameAvailabilityParameters; +import com.microsoft.azure.management.redis.ExportRDBParameters; +import com.microsoft.azure.management.redis.ImportRDBParameters; +import com.microsoft.azure.management.redis.RedisCreateParameters; import com.microsoft.azure.management.redis.RedisKeyType; +import com.microsoft.azure.management.redis.RedisRebootParameters; import com.microsoft.azure.management.redis.RedisRegenerateKeyParameters; +import com.microsoft.azure.management.redis.RedisUpdateParameters; import com.microsoft.azure.Page; import com.microsoft.azure.PagedList; import com.microsoft.rest.ServiceCallback; @@ -70,7 +76,7 @@ public RedisInner(Retrofit retrofit, RedisManagementClientImpl client) { interface RedisService { @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.Redis checkNameAvailability" }) @POST("subscriptions/{subscriptionId}/providers/Microsoft.Cache/CheckNameAvailability") - Observable> checkNameAvailability(@Path("subscriptionId") String subscriptionId, @Body CheckNameAvailabilityParametersInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + Observable> checkNameAvailability(@Path("subscriptionId") String subscriptionId, @Body CheckNameAvailabilityParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.Redis listUpgradeNotifications" }) @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/listUpgradeNotifications") @@ -78,15 +84,15 @@ interface RedisService { @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.Redis create" }) @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}") - Observable> create(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body RedisCreateParametersInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + Observable> create(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body RedisCreateParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.Redis beginCreate" }) @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}") - Observable> beginCreate(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body RedisCreateParametersInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + Observable> beginCreate(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body RedisCreateParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.Redis update" }) @PATCH("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}") - Observable> update(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body RedisUpdateParametersInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + Observable> update(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body RedisUpdateParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.Redis delete" }) @HTTP(path = "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}", method = "DELETE", hasBody = true) @@ -118,23 +124,23 @@ interface RedisService { @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.Redis forceReboot" }) @POST("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/forceReboot") - Observable> forceReboot(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body RedisRebootParametersInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + Observable> forceReboot(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body RedisRebootParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.Redis importData" }) @POST("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/import") - Observable> importData(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body ImportRDBParametersInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + Observable> importData(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body ImportRDBParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.Redis beginImportData" }) @POST("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/import") - Observable> beginImportData(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body ImportRDBParametersInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + Observable> beginImportData(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body ImportRDBParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.Redis exportData" }) @POST("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/export") - Observable> exportData(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body ExportRDBParametersInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + Observable> exportData(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body ExportRDBParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.Redis beginExportData" }) @POST("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/export") - Observable> beginExportData(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body ExportRDBParametersInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); + Observable> beginExportData(@Path("resourceGroupName") String resourceGroupName, @Path("name") String name, @Path("subscriptionId") String subscriptionId, @Body ExportRDBParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.redis.Redis listByResourceGroupNext" }) @GET @@ -149,35 +155,35 @@ interface RedisService { /** * Checks that the redis cache name is valid and is not already in use. * - * @param parameters Parameters supplied to the CheckNameAvailability Redis operation. + * @param parameters Parameters supplied to the CheckNameAvailability Redis operation. The only supported resource type is 'Microsoft.Cache/redis' * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent */ - public void checkNameAvailability(CheckNameAvailabilityParametersInner parameters) { + public void checkNameAvailability(CheckNameAvailabilityParameters parameters) { checkNameAvailabilityWithServiceResponseAsync(parameters).toBlocking().single().body(); } /** * Checks that the redis cache name is valid and is not already in use. * - * @param parameters Parameters supplied to the CheckNameAvailability Redis operation. + * @param parameters Parameters supplied to the CheckNameAvailability Redis operation. The only supported resource type is 'Microsoft.Cache/redis' * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */ - public ServiceFuture checkNameAvailabilityAsync(CheckNameAvailabilityParametersInner parameters, final ServiceCallback serviceCallback) { + public ServiceFuture checkNameAvailabilityAsync(CheckNameAvailabilityParameters parameters, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(checkNameAvailabilityWithServiceResponseAsync(parameters), serviceCallback); } /** * Checks that the redis cache name is valid and is not already in use. * - * @param parameters Parameters supplied to the CheckNameAvailability Redis operation. + * @param parameters Parameters supplied to the CheckNameAvailability Redis operation. The only supported resource type is 'Microsoft.Cache/redis' * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceResponse} object if successful. */ - public Observable checkNameAvailabilityAsync(CheckNameAvailabilityParametersInner parameters) { + public Observable checkNameAvailabilityAsync(CheckNameAvailabilityParameters parameters) { return checkNameAvailabilityWithServiceResponseAsync(parameters).map(new Func1, Void>() { @Override public Void call(ServiceResponse response) { @@ -189,11 +195,11 @@ public Void call(ServiceResponse response) { /** * Checks that the redis cache name is valid and is not already in use. * - * @param parameters Parameters supplied to the CheckNameAvailability Redis operation. + * @param parameters Parameters supplied to the CheckNameAvailability Redis operation. The only supported resource type is 'Microsoft.Cache/redis' * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceResponse} object if successful. */ - public Observable> checkNameAvailabilityWithServiceResponseAsync(CheckNameAvailabilityParametersInner parameters) { + public Observable> checkNameAvailabilityWithServiceResponseAsync(CheckNameAvailabilityParameters parameters) { if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } @@ -326,7 +332,7 @@ private ServiceResponse listUpgradeNotificationsD * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the RedisResourceInner object if successful. */ - public RedisResourceInner create(String resourceGroupName, String name, RedisCreateParametersInner parameters) { + public RedisResourceInner create(String resourceGroupName, String name, RedisCreateParameters parameters) { return createWithServiceResponseAsync(resourceGroupName, name, parameters).toBlocking().last().body(); } @@ -340,7 +346,7 @@ public RedisResourceInner create(String resourceGroupName, String name, RedisCre * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */ - public ServiceFuture createAsync(String resourceGroupName, String name, RedisCreateParametersInner parameters, final ServiceCallback serviceCallback) { + public ServiceFuture createAsync(String resourceGroupName, String name, RedisCreateParameters parameters, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(createWithServiceResponseAsync(resourceGroupName, name, parameters), serviceCallback); } @@ -353,7 +359,7 @@ public ServiceFuture createAsync(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */ - public Observable createAsync(String resourceGroupName, String name, RedisCreateParametersInner parameters) { + public Observable createAsync(String resourceGroupName, String name, RedisCreateParameters parameters) { return createWithServiceResponseAsync(resourceGroupName, name, parameters).map(new Func1, RedisResourceInner>() { @Override public RedisResourceInner call(ServiceResponse response) { @@ -371,7 +377,7 @@ public RedisResourceInner call(ServiceResponse response) { * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */ - public Observable> createWithServiceResponseAsync(String resourceGroupName, String name, RedisCreateParametersInner parameters) { + public Observable> createWithServiceResponseAsync(String resourceGroupName, String name, RedisCreateParameters parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } @@ -403,7 +409,7 @@ public Observable> createWithServiceResponse * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the RedisResourceInner object if successful. */ - public RedisResourceInner beginCreate(String resourceGroupName, String name, RedisCreateParametersInner parameters) { + public RedisResourceInner beginCreate(String resourceGroupName, String name, RedisCreateParameters parameters) { return beginCreateWithServiceResponseAsync(resourceGroupName, name, parameters).toBlocking().single().body(); } @@ -417,7 +423,7 @@ public RedisResourceInner beginCreate(String resourceGroupName, String name, Red * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */ - public ServiceFuture beginCreateAsync(String resourceGroupName, String name, RedisCreateParametersInner parameters, final ServiceCallback serviceCallback) { + public ServiceFuture beginCreateAsync(String resourceGroupName, String name, RedisCreateParameters parameters, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(beginCreateWithServiceResponseAsync(resourceGroupName, name, parameters), serviceCallback); } @@ -430,7 +436,7 @@ public ServiceFuture beginCreateAsync(String resourceGroupNa * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the RedisResourceInner object */ - public Observable beginCreateAsync(String resourceGroupName, String name, RedisCreateParametersInner parameters) { + public Observable beginCreateAsync(String resourceGroupName, String name, RedisCreateParameters parameters) { return beginCreateWithServiceResponseAsync(resourceGroupName, name, parameters).map(new Func1, RedisResourceInner>() { @Override public RedisResourceInner call(ServiceResponse response) { @@ -448,7 +454,7 @@ public RedisResourceInner call(ServiceResponse response) { * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the RedisResourceInner object */ - public Observable> beginCreateWithServiceResponseAsync(String resourceGroupName, String name, RedisCreateParametersInner parameters) { + public Observable> beginCreateWithServiceResponseAsync(String resourceGroupName, String name, RedisCreateParameters parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } @@ -498,7 +504,7 @@ private ServiceResponse beginCreateDelegate(Response updateAsync(String resourceGroupName, String name, RedisUpdateParametersInner parameters, final ServiceCallback serviceCallback) { + public ServiceFuture updateAsync(String resourceGroupName, String name, RedisUpdateParameters parameters, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(updateWithServiceResponseAsync(resourceGroupName, name, parameters), serviceCallback); } @@ -525,7 +531,7 @@ public ServiceFuture updateAsync(String resourceGroupName, S * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the RedisResourceInner object */ - public Observable updateAsync(String resourceGroupName, String name, RedisUpdateParametersInner parameters) { + public Observable updateAsync(String resourceGroupName, String name, RedisUpdateParameters parameters) { return updateWithServiceResponseAsync(resourceGroupName, name, parameters).map(new Func1, RedisResourceInner>() { @Override public RedisResourceInner call(ServiceResponse response) { @@ -543,7 +549,7 @@ public RedisResourceInner call(ServiceResponse response) { * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the RedisResourceInner object */ - public Observable> updateWithServiceResponseAsync(String resourceGroupName, String name, RedisUpdateParametersInner parameters) { + public Observable> updateWithServiceResponseAsync(String resourceGroupName, String name, RedisUpdateParameters parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } @@ -1236,7 +1242,7 @@ private ServiceResponse regenerateKeyDelegate(Response forceRebootAsync(String resourceGroupName, String name, RedisRebootParametersInner parameters, final ServiceCallback serviceCallback) { + public ServiceFuture forceRebootAsync(String resourceGroupName, String name, RedisRebootParameters parameters, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(forceRebootWithServiceResponseAsync(resourceGroupName, name, parameters), serviceCallback); } @@ -1263,7 +1269,7 @@ public ServiceFuture forceRebootAsync(String reso * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the RedisForceRebootResponseInner object */ - public Observable forceRebootAsync(String resourceGroupName, String name, RedisRebootParametersInner parameters) { + public Observable forceRebootAsync(String resourceGroupName, String name, RedisRebootParameters parameters) { return forceRebootWithServiceResponseAsync(resourceGroupName, name, parameters).map(new Func1, RedisForceRebootResponseInner>() { @Override public RedisForceRebootResponseInner call(ServiceResponse response) { @@ -1281,7 +1287,7 @@ public RedisForceRebootResponseInner call(ServiceResponse> forceRebootWithServiceResponseAsync(String resourceGroupName, String name, RedisRebootParametersInner parameters) { + public Observable> forceRebootWithServiceResponseAsync(String resourceGroupName, String name, RedisRebootParameters parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } @@ -1329,7 +1335,7 @@ private ServiceResponse forceRebootDelegate(Respo * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent */ - public void importData(String resourceGroupName, String name, ImportRDBParametersInner parameters) { + public void importData(String resourceGroupName, String name, ImportRDBParameters parameters) { importDataWithServiceResponseAsync(resourceGroupName, name, parameters).toBlocking().last().body(); } @@ -1343,7 +1349,7 @@ public void importData(String resourceGroupName, String name, ImportRDBParameter * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */ - public ServiceFuture importDataAsync(String resourceGroupName, String name, ImportRDBParametersInner parameters, final ServiceCallback serviceCallback) { + public ServiceFuture importDataAsync(String resourceGroupName, String name, ImportRDBParameters parameters, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(importDataWithServiceResponseAsync(resourceGroupName, name, parameters), serviceCallback); } @@ -1356,7 +1362,7 @@ public ServiceFuture importDataAsync(String resourceGroupName, String name * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */ - public Observable importDataAsync(String resourceGroupName, String name, ImportRDBParametersInner parameters) { + public Observable importDataAsync(String resourceGroupName, String name, ImportRDBParameters parameters) { return importDataWithServiceResponseAsync(resourceGroupName, name, parameters).map(new Func1, Void>() { @Override public Void call(ServiceResponse response) { @@ -1374,7 +1380,7 @@ public Void call(ServiceResponse response) { * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */ - public Observable> importDataWithServiceResponseAsync(String resourceGroupName, String name, ImportRDBParametersInner parameters) { + public Observable> importDataWithServiceResponseAsync(String resourceGroupName, String name, ImportRDBParameters parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } @@ -1405,7 +1411,7 @@ public Observable> importDataWithServiceResponseAsync(Stri * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent */ - public void beginImportData(String resourceGroupName, String name, ImportRDBParametersInner parameters) { + public void beginImportData(String resourceGroupName, String name, ImportRDBParameters parameters) { beginImportDataWithServiceResponseAsync(resourceGroupName, name, parameters).toBlocking().single().body(); } @@ -1419,7 +1425,7 @@ public void beginImportData(String resourceGroupName, String name, ImportRDBPara * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */ - public ServiceFuture beginImportDataAsync(String resourceGroupName, String name, ImportRDBParametersInner parameters, final ServiceCallback serviceCallback) { + public ServiceFuture beginImportDataAsync(String resourceGroupName, String name, ImportRDBParameters parameters, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(beginImportDataWithServiceResponseAsync(resourceGroupName, name, parameters), serviceCallback); } @@ -1432,7 +1438,7 @@ public ServiceFuture beginImportDataAsync(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceResponse} object if successful. */ - public Observable beginImportDataAsync(String resourceGroupName, String name, ImportRDBParametersInner parameters) { + public Observable beginImportDataAsync(String resourceGroupName, String name, ImportRDBParameters parameters) { return beginImportDataWithServiceResponseAsync(resourceGroupName, name, parameters).map(new Func1, Void>() { @Override public Void call(ServiceResponse response) { @@ -1450,7 +1456,7 @@ public Void call(ServiceResponse response) { * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceResponse} object if successful. */ - public Observable> beginImportDataWithServiceResponseAsync(String resourceGroupName, String name, ImportRDBParametersInner parameters) { + public Observable> beginImportDataWithServiceResponseAsync(String resourceGroupName, String name, ImportRDBParameters parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } @@ -1500,7 +1506,7 @@ private ServiceResponse beginImportDataDelegate(Response res * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent */ - public void exportData(String resourceGroupName, String name, ExportRDBParametersInner parameters) { + public void exportData(String resourceGroupName, String name, ExportRDBParameters parameters) { exportDataWithServiceResponseAsync(resourceGroupName, name, parameters).toBlocking().last().body(); } @@ -1514,7 +1520,7 @@ public void exportData(String resourceGroupName, String name, ExportRDBParameter * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */ - public ServiceFuture exportDataAsync(String resourceGroupName, String name, ExportRDBParametersInner parameters, final ServiceCallback serviceCallback) { + public ServiceFuture exportDataAsync(String resourceGroupName, String name, ExportRDBParameters parameters, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(exportDataWithServiceResponseAsync(resourceGroupName, name, parameters), serviceCallback); } @@ -1527,7 +1533,7 @@ public ServiceFuture exportDataAsync(String resourceGroupName, String name * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */ - public Observable exportDataAsync(String resourceGroupName, String name, ExportRDBParametersInner parameters) { + public Observable exportDataAsync(String resourceGroupName, String name, ExportRDBParameters parameters) { return exportDataWithServiceResponseAsync(resourceGroupName, name, parameters).map(new Func1, Void>() { @Override public Void call(ServiceResponse response) { @@ -1545,7 +1551,7 @@ public Void call(ServiceResponse response) { * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */ - public Observable> exportDataWithServiceResponseAsync(String resourceGroupName, String name, ExportRDBParametersInner parameters) { + public Observable> exportDataWithServiceResponseAsync(String resourceGroupName, String name, ExportRDBParameters parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } @@ -1576,7 +1582,7 @@ public Observable> exportDataWithServiceResponseAsync(Stri * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent */ - public void beginExportData(String resourceGroupName, String name, ExportRDBParametersInner parameters) { + public void beginExportData(String resourceGroupName, String name, ExportRDBParameters parameters) { beginExportDataWithServiceResponseAsync(resourceGroupName, name, parameters).toBlocking().single().body(); } @@ -1590,7 +1596,7 @@ public void beginExportData(String resourceGroupName, String name, ExportRDBPara * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */ - public ServiceFuture beginExportDataAsync(String resourceGroupName, String name, ExportRDBParametersInner parameters, final ServiceCallback serviceCallback) { + public ServiceFuture beginExportDataAsync(String resourceGroupName, String name, ExportRDBParameters parameters, final ServiceCallback serviceCallback) { return ServiceFuture.fromResponse(beginExportDataWithServiceResponseAsync(resourceGroupName, name, parameters), serviceCallback); } @@ -1603,7 +1609,7 @@ public ServiceFuture beginExportDataAsync(String resourceGroupName, String * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceResponse} object if successful. */ - public Observable beginExportDataAsync(String resourceGroupName, String name, ExportRDBParametersInner parameters) { + public Observable beginExportDataAsync(String resourceGroupName, String name, ExportRDBParameters parameters) { return beginExportDataWithServiceResponseAsync(resourceGroupName, name, parameters).map(new Func1, Void>() { @Override public Void call(ServiceResponse response) { @@ -1621,7 +1627,7 @@ public Void call(ServiceResponse response) { * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceResponse} object if successful. */ - public Observable> beginExportDataWithServiceResponseAsync(String resourceGroupName, String name, ExportRDBParametersInner parameters) { + public Observable> beginExportDataWithServiceResponseAsync(String resourceGroupName, String name, ExportRDBParameters parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisPatchScheduleImpl.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisPatchScheduleImpl.java new file mode 100644 index 00000000000..61bd800c8bf --- /dev/null +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisPatchScheduleImpl.java @@ -0,0 +1,87 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + */ + +package com.microsoft.azure.management.redis.implementation; + +import com.microsoft.azure.management.apigeneration.LangDefinition; +import com.microsoft.azure.management.redis.RedisCache; +import com.microsoft.azure.management.redis.RedisPatchSchedule; +import com.microsoft.azure.management.redis.ScheduleEntry; +import com.microsoft.azure.management.resources.fluentcore.arm.models.implementation.ExternalChildResourceImpl; +import rx.Observable; +import rx.functions.Func1; + +import java.util.Collections; +import java.util.List; + +/** + * The Azure {@link RedisPatchSchedule} wrapper class implementation. + */ +@LangDefinition +class RedisPatchScheduleImpl extends + ExternalChildResourceImpl + implements RedisPatchSchedule { + + RedisPatchScheduleImpl(String name, RedisCacheImpl parent, RedisPatchScheduleInner innerObject) { + super(getChildName(name, parent.name()), parent, innerObject); + } + + @Override + public String id() { + return this.inner().id(); + } + + @Override + public List scheduleEntries() { + return Collections.unmodifiableList(this.inner().scheduleEntries()); + } + + @Override + public Observable createResourceAsync() { + final RedisPatchScheduleImpl self = this; + return this.parent().manager().inner().patchSchedules().createOrUpdateAsync( + this.parent().resourceGroupName(), + this.parent().name(), + this.inner().scheduleEntries()) + .map(new Func1() { + @Override + public RedisPatchSchedule call(RedisPatchScheduleInner patchScheduleInner) { + self.setInner(patchScheduleInner); + return self; + } + }); + } + + @Override + public Observable updateResourceAsync() { + return this.createResourceAsync(); + } + + @Override + public Observable deleteResourceAsync() { + return this.parent().manager().inner().patchSchedules().deleteAsync(this.parent().resourceGroupName(), + this.parent().name()); + } + + @Override + protected Observable getInnerAsync() { + return this.parent().manager().inner().patchSchedules().getAsync(this.parent().resourceGroupName(), + this.parent().name()); + } + + + private static String getChildName(String name, String parentName) { + if (name != null + && name.indexOf("/") != -1) { + // Patch Schedule name consist of "parent/child" name syntax but delete/update/get should be called only on child name + return name.substring(parentName.length() + 1); + } + return name; + } +} diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisPatchScheduleInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisPatchScheduleInner.java index 2c555e03a53..0b29b48e625 100644 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisPatchScheduleInner.java +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisPatchScheduleInner.java @@ -9,6 +9,7 @@ package com.microsoft.azure.management.redis.implementation; import java.util.List; +import com.microsoft.azure.management.redis.ScheduleEntry; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; @@ -21,14 +22,14 @@ public class RedisPatchScheduleInner extends ProxyResourceInner { * List of patch schedules for a Redis cache. */ @JsonProperty(value = "properties.scheduleEntries", required = true) - private List scheduleEntries; + private List scheduleEntries; /** * Get the scheduleEntries value. * * @return the scheduleEntries value */ - public List scheduleEntries() { + public List scheduleEntries() { return this.scheduleEntries; } @@ -38,7 +39,7 @@ public List scheduleEntries() { * @param scheduleEntries the scheduleEntries value to set * @return the RedisPatchScheduleInner object itself. */ - public RedisPatchScheduleInner withScheduleEntries(List scheduleEntries) { + public RedisPatchScheduleInner withScheduleEntries(List scheduleEntries) { this.scheduleEntries = scheduleEntries; return this; } diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisPatchSchedulesImpl.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisPatchSchedulesImpl.java new file mode 100644 index 00000000000..93d71236c89 --- /dev/null +++ b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/RedisPatchSchedulesImpl.java @@ -0,0 +1,91 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + */ + +package com.microsoft.azure.management.redis.implementation; + +import com.microsoft.azure.management.apigeneration.LangDefinition; +import com.microsoft.azure.management.redis.RedisCache; +import com.microsoft.azure.management.redis.RedisPatchSchedule; +import com.microsoft.azure.management.resources.fluentcore.arm.collection.implementation.ExternalChildResourcesCachedImpl; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * Represents a Redis patch schedule collection associated with a Redis cache instance. + */ +@LangDefinition +class RedisPatchSchedulesImpl extends + ExternalChildResourcesCachedImpl { + // Currently Redis Cache has one PatchSchedule + private final String patchScheduleName = "default"; + + RedisPatchSchedulesImpl(RedisCacheImpl parent) { + super(parent, parent.taskGroup(), "PatchSchedule"); + if (parent.id() != null) { + this.cacheCollection(); + } + } + + Map patchSchedulesAsMap() { + Map result = new HashMap<>(); + for (Map.Entry entry : this.collection().entrySet()) { + RedisPatchScheduleImpl patchSchedule = entry.getValue(); + result.put(entry.getKey(), patchSchedule); + } + return Collections.unmodifiableMap(result); + } + + public void addPatchSchedule(RedisPatchScheduleImpl patchSchedule) { + this.addChildResource(patchSchedule); + } + + public RedisPatchScheduleImpl getPatchSchedule() { + return this.collection().get(this.patchScheduleName); + } + + public void removePatchSchedule() { + RedisPatchScheduleImpl psch = this.getPatchSchedule(); + if (psch != null) { + psch.deleteResourceAsync().toBlocking().last(); + } +} + + public RedisPatchScheduleImpl defineInlinePatchSchedule() { + return prepareInlineDefine(this.patchScheduleName); + } + + public RedisPatchScheduleImpl updateInlinePatchSchedule() { + return prepareInlineUpdate(this.patchScheduleName); + } + + public void deleteInlinePatchSchedule() { + prepareInlineRemove(this.patchScheduleName); + } + + @Override + protected List listChildResources() { + List childResources = new ArrayList<>(); + for (RedisPatchScheduleInner patchSchedule : this.parent().manager().inner().patchSchedules().listByRedisResource( + this.parent().resourceGroupName(), + this.parent().name())) { + childResources.add(new RedisPatchScheduleImpl(patchSchedule.name(), this.parent(), patchSchedule)); + } + return Collections.unmodifiableList(childResources); + } + + @Override + protected RedisPatchScheduleImpl newChildResource(String name) { + return new RedisPatchScheduleImpl(name, this.parent(), new RedisPatchScheduleInner()); + } +} diff --git a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/ScheduleEntryInner.java b/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/ScheduleEntryInner.java deleted file mode 100644 index 58d072c5180..00000000000 --- a/azure-mgmt-redis/src/main/java/com/microsoft/azure/management/redis/implementation/ScheduleEntryInner.java +++ /dev/null @@ -1,99 +0,0 @@ -/** - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - */ - -package com.microsoft.azure.management.redis.implementation; - -import com.microsoft.azure.management.redis.DayOfWeek; -import org.joda.time.Period; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * Patch schedule entry for a Premium Redis Cache. - */ -public class ScheduleEntryInner { - /** - * Day of the week when a cache can be patched. Possible values include: - * 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', - * 'Sunday', 'Everyday', 'Weekend'. - */ - @JsonProperty(value = "dayOfWeek", required = true) - private DayOfWeek dayOfWeek; - - /** - * Start hour after which cache patching can start. - */ - @JsonProperty(value = "startHourUtc", required = true) - private int startHourUtc; - - /** - * ISO8601 timespan specifying how much time cache patching can take. - */ - @JsonProperty(value = "maintenanceWindow") - private Period maintenanceWindow; - - /** - * Get the dayOfWeek value. - * - * @return the dayOfWeek value - */ - public DayOfWeek dayOfWeek() { - return this.dayOfWeek; - } - - /** - * Set the dayOfWeek value. - * - * @param dayOfWeek the dayOfWeek value to set - * @return the ScheduleEntryInner object itself. - */ - public ScheduleEntryInner withDayOfWeek(DayOfWeek dayOfWeek) { - this.dayOfWeek = dayOfWeek; - return this; - } - - /** - * Get the startHourUtc value. - * - * @return the startHourUtc value - */ - public int startHourUtc() { - return this.startHourUtc; - } - - /** - * Set the startHourUtc value. - * - * @param startHourUtc the startHourUtc value to set - * @return the ScheduleEntryInner object itself. - */ - public ScheduleEntryInner withStartHourUtc(int startHourUtc) { - this.startHourUtc = startHourUtc; - return this; - } - - /** - * Get the maintenanceWindow value. - * - * @return the maintenanceWindow value - */ - public Period maintenanceWindow() { - return this.maintenanceWindow; - } - - /** - * Set the maintenanceWindow value. - * - * @param maintenanceWindow the maintenanceWindow value to set - * @return the ScheduleEntryInner object itself. - */ - public ScheduleEntryInner withMaintenanceWindow(Period maintenanceWindow) { - this.maintenanceWindow = maintenanceWindow; - return this; - } - -} diff --git a/azure-mgmt-redis/src/test/java/com/microsoft/azure/management/redis/RedisCacheOperationsTests.java b/azure-mgmt-redis/src/test/java/com/microsoft/azure/management/redis/RedisCacheOperationsTests.java index bc365ea711f..6fdd5100c5e 100644 --- a/azure-mgmt-redis/src/test/java/com/microsoft/azure/management/redis/RedisCacheOperationsTests.java +++ b/azure-mgmt-redis/src/test/java/com/microsoft/azure/management/redis/RedisCacheOperationsTests.java @@ -9,6 +9,7 @@ import com.microsoft.azure.CloudException; import com.microsoft.azure.management.resources.ResourceGroup; import com.microsoft.azure.management.resources.fluentcore.arm.Region; +import com.microsoft.azure.management.resources.fluentcore.arm.ResourceUtils; import com.microsoft.azure.management.resources.fluentcore.model.Creatable; import com.microsoft.azure.management.resources.fluentcore.model.CreatedResources; import com.microsoft.azure.management.storage.StorageAccount; @@ -17,6 +18,7 @@ import org.junit.Test; import java.util.List; +import java.util.Map; import static org.junit.Assert.fail; @@ -46,7 +48,11 @@ public void canCRUDRedisCache() throws Exception { .withNewResourceGroup(resourceGroups) .withPremiumSku(2) .withRedisConfiguration("maxclients", "2") - .withNonSslPort(); + .withNonSslPort() + .withFirewallRule("rule1", "192.168.0.1", "192.168.0.4") + .withFirewallRule("rule2", "192.168.0.10", "192.168.0.40"); + // Server throws "The 'minimumTlsVersion' property is not yet supported." exception. Uncomment when fixed. + //.withMinimumTlsVersion(TlsVersion.ONE_FULL_STOP_ONE); CreatedResources batchRedisCaches = redisManager.redisCaches() .create(redisCacheDefinition1, redisCacheDefinition2, redisCacheDefinition3); @@ -134,12 +140,23 @@ public void canCRUDRedisCache() throws Exception { // Premium SKU Functionality RedisCachePremium premiumCache = redisCachePremium.asPremium(); Assert.assertEquals(SkuFamily.P, premiumCache.sku().family()); + Assert.assertEquals(2, premiumCache.firewallRules().size()); + Assert.assertTrue(premiumCache.firewallRules().containsKey("rule1")); + Assert.assertTrue(premiumCache.firewallRules().containsKey("rule2")); // Redis configuration update premiumCache.update() .withRedisConfiguration("maxclients", "3") + .withoutFirewallRule("rule1") + .withFirewallRule("rule3", "192.168.0.10", "192.168.0.104") + .withoutMinimumTlsVersion() .apply(); + Assert.assertEquals(2, premiumCache.firewallRules().size()); + Assert.assertTrue(premiumCache.firewallRules().containsKey("rule2")); + Assert.assertTrue(premiumCache.firewallRules().containsKey("rule3")); + Assert.assertFalse(premiumCache.firewallRules().containsKey("rule1")); + premiumCache.update() .withoutRedisConfiguration("maxclients") .apply(); @@ -148,11 +165,13 @@ public void canCRUDRedisCache() throws Exception { .withoutRedisConfiguration() .apply(); + Assert.assertEquals(0, premiumCache.patchSchedules().size()); premiumCache.update() .withPatchSchedule(DayOfWeek.MONDAY, 1) .withPatchSchedule(DayOfWeek.TUESDAY, 5) .apply(); + Assert.assertEquals(2, premiumCache.patchSchedules().size()); // Reboot premiumCache.forceReboot(RebootType.ALL_NODES); @@ -179,4 +198,57 @@ public void canCRUDRedisCache() throws Exception { premiumCache.importData(Arrays.asList("snapshot1"));*/ } + + @Test + public void canCRUDLinkedServers() throws Exception { + + RedisCache rgg = redisManager.redisCaches() + .define(RR_NAME_THIRD) + .withRegion(Region.US_CENTRAL) + .withNewResourceGroup(RG_NAME_SECOND) + .withPremiumSku(2) + .withPatchSchedule(DayOfWeek.SATURDAY, 5, Period.hours(5)) + .withRedisConfiguration("maxclients", "2") + .withNonSslPort() + .withFirewallRule("rule1", "192.168.0.1", "192.168.0.4") + .withFirewallRule("rule2", "192.168.0.10", "192.168.0.40") + .create(); + + RedisCache rggLinked = redisManager.redisCaches() + .define(RR_NAME_SECOND) + .withRegion(Region.US_EAST) + .withExistingResourceGroup(RG_NAME_SECOND) + .withPremiumSku(2) + .create(); + + Assert.assertNotNull(rgg); + Assert.assertNotNull(rggLinked); + + RedisCachePremium premiumRgg = rgg.asPremium(); + + String llName = premiumRgg.addLinkedServer(rggLinked.id(), rggLinked.regionName(), ReplicationRole.PRIMARY); + + Assert.assertEquals(ResourceUtils.nameFromResourceId(rggLinked.id()), llName); + + Map linkedServers = premiumRgg.listLinkedServers(); + Assert.assertEquals(1, linkedServers.size()); + Assert.assertTrue(linkedServers.keySet().contains(llName)); + Assert.assertEquals(ReplicationRole.PRIMARY, linkedServers.get(llName)); + + ReplicationRole repRole = premiumRgg.getLinkedServerRole(llName); + Assert.assertEquals(ReplicationRole.PRIMARY, repRole); + + premiumRgg.removeLinkedServer(llName); + + rgg.update() + .withoutPatchSchedule() + .apply(); + + rggLinked.update() + .withFirewallRule("rulesmhule", "192.168.1.10", "192.168.1.20") + .apply(); + + linkedServers = premiumRgg.listLinkedServers(); + Assert.assertEquals(0, linkedServers.size()); + } } diff --git a/azure-mgmt-redis/src/test/java/com/microsoft/azure/management/redis/RedisManagementTest.java b/azure-mgmt-redis/src/test/java/com/microsoft/azure/management/redis/RedisManagementTest.java index f9bd2412518..78b662d656f 100644 --- a/azure-mgmt-redis/src/test/java/com/microsoft/azure/management/redis/RedisManagementTest.java +++ b/azure-mgmt-redis/src/test/java/com/microsoft/azure/management/redis/RedisManagementTest.java @@ -7,6 +7,7 @@ package com.microsoft.azure.management.redis; +import com.microsoft.azure.CloudException; import com.microsoft.azure.management.redis.implementation.RedisManager; import com.microsoft.azure.management.resources.core.TestBase; import com.microsoft.azure.management.resources.implementation.ResourceManager; @@ -49,8 +50,12 @@ protected void initializeClients(RestClient restClient, String defaultSubscripti @Override protected void cleanUpResources() { - resourceManager.resourceGroups().deleteByName(RG_NAME); - resourceManager.resourceGroups().deleteByName(RG_NAME_SECOND); + try { + resourceManager.resourceGroups().deleteByName(RG_NAME); + } catch (CloudException ex) {} + try { + resourceManager.resourceGroups().deleteByName(RG_NAME_SECOND); + } catch (CloudException ex) {} } } diff --git a/azure-mgmt-redis/src/test/resources/session-records/canCRUDLinkedServers.json b/azure-mgmt-redis/src/test/resources/session-records/canCRUDLinkedServers.json new file mode 100644 index 00000000000..dba8595a638 --- /dev/null +++ b/azure-mgmt-redis/src/test/resources/session-records/canCRUDLinkedServers.json @@ -0,0 +1,5790 @@ +{ + "networkCallRecords" : [ { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg33658Second?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second\",\"name\":\"javacsmrg33658Second\",\"location\":\"centralus\",\"tags\":{\"product\":\"javasdk\",\"cause\":\"automation\",\"date\":\"2018-06-18T21:16:07.054Z\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "WESTUS:20180618T211608Z:bc253cd2-ef30-45ea-a0d0-37932a2545f6", + "date" : "Mon, 18 Jun 2018 21:16:07 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "bc253cd2-ef30-45ea-a0d0-37932a2545f6", + "content-length" : "280", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bc253cd2-ef30-45ea-a0d0-37932a2545f6" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":{\"primaryKey\":\"vZrH9yQCsFhBEOWXeiTNma8etIfvIZ4GPn9LXcBSSBY=\",\"secondaryKey\":\"WaytNtUY0MejbQhse+kEYBDWIO8QcmlTbp6zB84Rt8c=\"},\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS:20180618T211609Z:90eddd9b-a47d-47ef-b72c-3cc95816c956", + "date" : "Mon, 18 Jun 2018 21:16:09 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c486245e-5d73-4fa6-8c95-2034961395d5", + "content-length" : "761", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "90eddd9b-a47d-47ef-b72c-3cc95816c956" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T211610Z:3eedd3e5-567f-47d9-8f2b-0e81408a27d1", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "date" : "Mon, 18 Jun 2018 21:16:09 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "0043e67b-adcd-49c1-94ee-8c14996a1e9c", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3eedd3e5-567f-47d9-8f2b-0e81408a27d1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T211640Z:526a1c6b-7155-430f-b117-eb49725f522b", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "date" : "Mon, 18 Jun 2018 21:16:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "7b203940-e8e7-4d94-b4b1-fcb76c57e8b8", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "526a1c6b-7155-430f-b117-eb49725f522b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T211710Z:0e10c7d2-cca5-4fe8-b6a2-50222dfaf64f", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Mon, 18 Jun 2018 21:17:09 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "02962a29-458e-4f8d-b03b-546cacafe1d0", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0e10c7d2-cca5-4fe8-b6a2-50222dfaf64f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T211740Z:653a6a82-88bb-46ed-909d-b8a8359b2c4d", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Mon, 18 Jun 2018 21:17:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "316f9d27-0923-4318-b336-3ac7e4aac25b", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "653a6a82-88bb-46ed-909d-b8a8359b2c4d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T211810Z:225f871b-6ded-450f-8676-c3aca75c2014", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Mon, 18 Jun 2018 21:18:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2c5697b9-3b74-4914-96f0-a030428939fd", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "225f871b-6ded-450f-8676-c3aca75c2014" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T211840Z:e9815748-afce-423d-80cd-2a97e3f08f96", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Mon, 18 Jun 2018 21:18:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "e0da9163-e240-4712-baca-d8987ba5d08a", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e9815748-afce-423d-80cd-2a97e3f08f96" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T211911Z:a9d87ff9-68d9-4766-9e2a-2d73491a7178", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Mon, 18 Jun 2018 21:19:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "1904ecda-f756-479c-bb26-b7fbbffbd7f6", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a9d87ff9-68d9-4766-9e2a-2d73491a7178" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T211941Z:e8fbf676-9dc2-4390-b350-48a173b032c1", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Mon, 18 Jun 2018 21:19:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "36c0e4ae-d9ab-46b8-b92a-bacce6811ba2", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e8fbf676-9dc2-4390-b350-48a173b032c1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212011Z:da2962c3-0f18-41d4-83f7-aae5b6bb3bbd", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Mon, 18 Jun 2018 21:20:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "9987567d-b09d-4080-83ab-f8efba69437c", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "da2962c3-0f18-41d4-83f7-aae5b6bb3bbd" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212041Z:a68abd12-3e44-4563-8839-73021b650c61", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "date" : "Mon, 18 Jun 2018 21:20:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "898d7aa9-5382-4497-b055-1d527f1ab675", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a68abd12-3e44-4563-8839-73021b650c61" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212111Z:df9dbf07-cdbe-4bb4-a13a-86dd4c6ebbd2", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "date" : "Mon, 18 Jun 2018 21:21:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "b30d3935-4045-45c3-abc7-a06ab629d551", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "df9dbf07-cdbe-4bb4-a13a-86dd4c6ebbd2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212142Z:6a9df94e-195a-4c72-be67-a96f0d5c8387", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "date" : "Mon, 18 Jun 2018 21:21:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "509ca729-b1d0-4aa5-b126-c8a1b929d226", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6a9df94e-195a-4c72-be67-a96f0d5c8387" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212212Z:c0142570-d039-454e-9b80-b7d99fa060a8", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "date" : "Mon, 18 Jun 2018 21:22:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "30cff3f7-8989-4f92-8bcc-bd5c94851c3d", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c0142570-d039-454e-9b80-b7d99fa060a8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212242Z:88426a6c-45f9-4c5c-9985-2935f0feb710", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Mon, 18 Jun 2018 21:22:42 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d6322c33-e155-4b79-a2aa-42fbaeeb57b1", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "88426a6c-45f9-4c5c-9985-2935f0feb710" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212312Z:6ff4f950-1e51-4922-8e97-7e990d97d998", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "date" : "Mon, 18 Jun 2018 21:23:12 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c9fe8efd-d9b4-47bc-8e5e-934ace2f2bc4", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6ff4f950-1e51-4922-8e97-7e990d97d998" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212343Z:0dd42bc0-cd3a-4f7b-9327-5095dc7df3ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "date" : "Mon, 18 Jun 2018 21:23:42 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "38a9efe7-0738-4431-bd3a-5f0ee909b1d5", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0dd42bc0-cd3a-4f7b-9327-5095dc7df3ed" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212413Z:30906314-093c-4030-a27d-af996e81a03e", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "date" : "Mon, 18 Jun 2018 21:24:13 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "18f6cd90-2bb7-4db4-8629-2e63cb2c883a", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "30906314-093c-4030-a27d-af996e81a03e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212443Z:9f7039c2-7455-4741-bb26-ebf825cb6223", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "date" : "Mon, 18 Jun 2018 21:24:43 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "457180f9-c8ce-4955-99b6-916d18848dc6", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9f7039c2-7455-4741-bb26-ebf825cb6223" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212514Z:450a3ba0-32f4-4931-8ba4-be43dc10b132", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Mon, 18 Jun 2018 21:25:13 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "9e5ea5ec-96af-4b7d-8848-619887e9e28c", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "450a3ba0-32f4-4931-8ba4-be43dc10b132" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212544Z:802b9dd1-2a19-4c1b-9645-eca1c4cfeee1", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Mon, 18 Jun 2018 21:25:44 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d66568ae-4c56-4d61-9a9a-de2d02ff8361", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "802b9dd1-2a19-4c1b-9645-eca1c4cfeee1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212614Z:d2983d6e-b863-464e-ae9c-c21ffdd74048", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "date" : "Mon, 18 Jun 2018 21:26:13 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a6a71cf1-6b6b-4d21-af04-a91a20aee884", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d2983d6e-b863-464e-ae9c-c21ffdd74048" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212644Z:74617c97-280f-44ae-9e4d-de8af6992dda", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "date" : "Mon, 18 Jun 2018 21:26:43 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "1a2cfe5b-82fc-4691-91b1-dc5c0e25b066", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "74617c97-280f-44ae-9e4d-de8af6992dda" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212714Z:308c7619-4e57-46b3-832c-1ff815c61443", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "date" : "Mon, 18 Jun 2018 21:27:13 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "0bcfcad6-6541-4436-aa9f-ddb629fc78b2", + "content-length" : "642", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "308c7619-4e57-46b3-832c-1ff815c61443" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212744Z:cd1a7f48-238b-48d4-b7d0-d5b95a27ead1", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "date" : "Mon, 18 Jun 2018 21:27:44 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "17e991bb-5cfa-4c12-80b2-80425f637411", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cd1a7f48-238b-48d4-b7d0-d5b95a27ead1" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/firewallRules/rule1?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third/firewallRules/rule1\",\"name\":\"javacsmrc31217Third/rule1\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third/firewallRules/rule1?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS:20180618T212746Z:3c92e645-05af-43b8-bcee-4ff5cb3ed86a", + "date" : "Mon, 18 Jun 2018 21:27:46 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "af0fadc7-2180-4131-a77b-2b98630591b9", + "content-length" : "309", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3c92e645-05af-43b8-bcee-4ff5cb3ed86a" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/patchSchedules/default?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Saturday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212746Z:a2d572be-ecd9-41ae-989d-d326c9a730a7", + "date" : "Mon, 18 Jun 2018 21:27:46 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a189eab3-5647-411b-a314-c3087fa31727", + "content-length" : "382", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a2d572be-ecd9-41ae-989d-d326c9a730a7" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/firewallRules/rule2?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third/firewallRules/rule2\",\"name\":\"javacsmrc31217Third/rule2\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Third/firewallRules/rule2?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS:20180618T212747Z:e908b300-ccc0-44fe-9e5f-171507e304c5", + "date" : "Mon, 18 Jun 2018 21:27:47 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8a37a8b8-b178-456d-a1fe-e51d4aa588e8", + "content-length" : "311", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e908b300-ccc0-44fe-9e5f-171507e304c5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212747Z:7fe63101-a636-469a-bef0-8962e4956c0c", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "date" : "Mon, 18 Jun 2018 21:27:47 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "7ffce599-7dab-4d43-96d9-4859b7cbc104", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7fe63101-a636-469a-bef0-8962e4956c0c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/firewallRules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/firewallRules/rule1\",\"name\":\"javacsmrc31217Third/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/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/firewallRules/rule2\",\"name\":\"javacsmrc31217Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}}]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212747Z:2013a6cd-792e-4d70-8f65-d3e574e914e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "date" : "Mon, 18 Jun 2018 21:27:47 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "83d34268-7482-4e6c-9625-273339a067c7", + "content-length" : "633", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2013a6cd-792e-4d70-8f65-d3e574e914e3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/patchSchedules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Saturday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212747Z:d665d394-0fbb-4e63-ba99-ca8d117692bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "date" : "Mon, 18 Jun 2018 21:27:47 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "1d31fb15-0906-4300-891f-b47d41e3eff6", + "content-length" : "394", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d665d394-0fbb-4e63-ba99-ca8d117692bd" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":{\"primaryKey\":\"zL0hCNo4KwD+cG82ihvDUhBrmrhHoCmTsnSnhir4RWk=\",\"secondaryKey\":\"i6MvYhOmWHhTBMPwe1Fx0T0+JLt8BouOuiI3oi8yOGs=\"},\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS:20180618T212750Z:e76578a5-e134-472e-82ae-974adeb313f4", + "date" : "Mon, 18 Jun 2018 21:27:49 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "41d00b52-b4ec-48c3-b716-67cd126f3f12", + "content-length" : "762", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e76578a5-e134-472e-82ae-974adeb313f4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212750Z:e3512f03-5495-4edc-ae01-558113f662d7", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "date" : "Mon, 18 Jun 2018 21:27:50 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "ca34b8d9-5c1e-40a9-9dfc-de8dbe819872", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e3512f03-5495-4edc-ae01-558113f662d7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212820Z:42f0db1f-b11c-42e3-98ce-a1a60a973f94", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "date" : "Mon, 18 Jun 2018 21:28:19 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a0f33d11-c5ca-4005-aeb4-4583ff84ad1b", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "42f0db1f-b11c-42e3-98ce-a1a60a973f94" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212850Z:a571381d-7234-492e-a229-bf03d8b8fca1", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "date" : "Mon, 18 Jun 2018 21:28:50 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "181e8d51-4212-4783-9f5e-7b58670647c5", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a571381d-7234-492e-a229-bf03d8b8fca1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212921Z:70d974a7-b675-43fa-9a35-bcce9d2a2a10", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "date" : "Mon, 18 Jun 2018 21:29:20 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8ccb4a27-cf49-4591-9abe-ea24cd6b0360", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "70d974a7-b675-43fa-9a35-bcce9d2a2a10" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T212951Z:6966e8e0-3358-4066-9bcb-cdde9530640d", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "date" : "Mon, 18 Jun 2018 21:29:50 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3a67ad4c-d294-42f2-884a-8cb703b56001", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6966e8e0-3358-4066-9bcb-cdde9530640d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213021Z:85f9ef33-89ef-4e3b-8a29-fed67c2c670b", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "date" : "Mon, 18 Jun 2018 21:30:21 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d2d2d52c-2c10-4998-ad49-6e9eaf41bf67", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "85f9ef33-89ef-4e3b-8a29-fed67c2c670b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213051Z:22e98115-c137-494a-a9a5-d77b77a9cbc4", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "date" : "Mon, 18 Jun 2018 21:30:51 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "9a9d0fb4-dbf5-4a5e-a03b-dc8937386613", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "22e98115-c137-494a-a9a5-d77b77a9cbc4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213122Z:490315a9-896b-4464-8c1c-19b5068f04b5", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "date" : "Mon, 18 Jun 2018 21:31:21 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "471eaf2b-9135-450a-a057-9944d72b4f4b", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "490315a9-896b-4464-8c1c-19b5068f04b5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213152Z:4ba16c54-53d6-47e2-a7e9-37746f4ee838", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "date" : "Mon, 18 Jun 2018 21:31:52 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "66c3e9d3-7099-4b53-872f-3ba34958c526", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4ba16c54-53d6-47e2-a7e9-37746f4ee838" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213222Z:18ce8694-c414-4526-bbd0-95dfcd6d9ec1", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "date" : "Mon, 18 Jun 2018 21:32:22 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "630b402c-98b3-48ca-bba3-dcf9ac033b52", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "18ce8694-c414-4526-bbd0-95dfcd6d9ec1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213252Z:c07e3b48-5802-4d44-a54b-7f071cc52e5d", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "date" : "Mon, 18 Jun 2018 21:32:52 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a73a19aa-123b-4cc9-97b7-28fd9a0891b0", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c07e3b48-5802-4d44-a54b-7f071cc52e5d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213323Z:16406f61-2ac1-4bca-81c6-406d93fa18bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "date" : "Mon, 18 Jun 2018 21:33:22 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "0abfcd83-7623-4db2-ad91-4dcff8a75aab", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "16406f61-2ac1-4bca-81c6-406d93fa18bd" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213353Z:2d57fdf6-c1b6-40ca-a28b-dd0aa7d9c808", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "date" : "Mon, 18 Jun 2018 21:33:53 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "fda016b4-6646-4e37-9e82-687af5a197ba", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2d57fdf6-c1b6-40ca-a28b-dd0aa7d9c808" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213423Z:6bcb3a4a-8bfc-4af1-bb16-c68dd03afece", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "date" : "Mon, 18 Jun 2018 21:34:23 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "6493ac3f-1177-4c5a-9650-7431b006bcb4", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6bcb3a4a-8bfc-4af1-bb16-c68dd03afece" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213454Z:6e46c7e2-2887-4fce-9d34-3028767f07e1", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "date" : "Mon, 18 Jun 2018 21:34:53 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "394c86d7-6874-462c-a016-bdc9a23ea93e", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6e46c7e2-2887-4fce-9d34-3028767f07e1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213524Z:300f7dcc-a80a-4e90-8190-d033bcf2489c", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "date" : "Mon, 18 Jun 2018 21:35:24 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5ac8b73f-2050-46f4-8279-8a3053b54f2c", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "300f7dcc-a80a-4e90-8190-d033bcf2489c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213554Z:c5c683ba-fa3c-478a-9d8d-669bc0928ae6", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "date" : "Mon, 18 Jun 2018 21:35:53 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "72092e06-52df-4a0e-b83e-bf88fea7b9cd", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c5c683ba-fa3c-478a-9d8d-669bc0928ae6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213624Z:3a1c5c91-de53-43c2-b14a-998437989aba", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "date" : "Mon, 18 Jun 2018 21:36:23 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2fd1c15e-17ca-4539-9c32-be01fa345d2c", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3a1c5c91-de53-43c2-b14a-998437989aba" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213654Z:92b1572d-32fb-4878-8112-c74d7224c171", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "date" : "Mon, 18 Jun 2018 21:36:54 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "100893ea-8f40-4d96-933f-abde620bc4e5", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "92b1572d-32fb-4878-8112-c74d7224c171" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213725Z:b65acd7a-5a3c-4527-945c-4118fb5a98d0", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "date" : "Mon, 18 Jun 2018 21:37:24 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "13241c68-b7d9-4c62-b9da-0e59497e76a4", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b65acd7a-5a3c-4527-945c-4118fb5a98d0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213755Z:5e8351c4-4fcf-46c5-8690-35b814c3a1c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "date" : "Mon, 18 Jun 2018 21:37:54 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "19a2b1db-1f21-4159-b326-50aaf37aae45", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5e8351c4-4fcf-46c5-8690-35b814c3a1c6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213825Z:1871e78d-cf46-4571-9864-4de82029c658", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "date" : "Mon, 18 Jun 2018 21:38:25 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2b429fb1-a720-4658-aad1-ce6bf6e01530", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1871e78d-cf46-4571-9864-4de82029c658" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213855Z:06307982-c74c-4b17-a162-f51c74d7b0a6", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "date" : "Mon, 18 Jun 2018 21:38:55 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "ee0c63ed-9022-4028-b41a-343df9f44138", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "06307982-c74c-4b17-a162-f51c74d7b0a6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213926Z:efc22711-b963-4558-b1ff-43d7a65e4d9e", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", + "date" : "Mon, 18 Jun 2018 21:39:25 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d669a7b2-3f4e-4abf-872a-03dcf16395bc", + "content-length" : "644", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "efc22711-b963-4558-b1ff-43d7a65e4d9e" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\",\r\n \"name\": \"javacsmrc31217Second\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\r\n \"linkedRedisCacheLocation\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "x-ms-routing-request-id" : "WESTUS:20180618T213928Z:10e239c1-2839-41e1-82c8-5b808f62cc17", + "date" : "Mon, 18 Jun 2018 21:39:27 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "7f2a4328-9143-4662-b769-14f22c8be0b8", + "content-length" : "582", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "10e239c1-2839-41e1-82c8-5b808f62cc17" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"linkedRedisCacheLocation\":\"East US\",\"provisioningState\":\"Creating\",\"serverRole\":\"Primary\"}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213928Z:03fd5d78-211c-4b20-bec2-34097aa836d8", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "date" : "Mon, 18 Jun 2018 21:39:27 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2d35a39f-e330-44a9-ac88-3b4076dea84b", + "content-length" : "528", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "03fd5d78-211c-4b20-bec2-34097aa836d8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"linkedRedisCacheLocation\":\"East US\",\"provisioningState\":\"Creating\",\"serverRole\":\"Primary\"}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T213958Z:89e9ce7f-8d4d-4d3e-aef7-20228e05dc1e", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "date" : "Mon, 18 Jun 2018 21:39:58 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8c2aee69-b555-43f6-94db-9e9dcef0422f", + "content-length" : "528", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "89e9ce7f-8d4d-4d3e-aef7-20228e05dc1e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"linkedRedisCacheLocation\":\"East US\",\"provisioningState\":\"Creating\",\"serverRole\":\"Primary\"}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214029Z:3463bf5c-a8f3-4680-aa90-ac0cc600c8c5", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "date" : "Mon, 18 Jun 2018 21:40:28 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8ce3fc87-01b3-46df-84b4-73ec3aaf08a2", + "content-length" : "528", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3463bf5c-a8f3-4680-aa90-ac0cc600c8c5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"linkedRedisCacheLocation\":\"East US\",\"provisioningState\":\"Syncing\",\"serverRole\":\"Primary\"}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214059Z:e045fd5d-6eb7-4671-a4b8-3168eb94a6de", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "date" : "Mon, 18 Jun 2018 21:40:58 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "29b05516-be40-4440-9575-1cbd1565942f", + "content-length" : "527", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e045fd5d-6eb7-4671-a4b8-3168eb94a6de" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"linkedRedisCacheLocation\":\"East US\",\"provisioningState\":\"Syncing\",\"serverRole\":\"Primary\"}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214129Z:7f29893d-ed6a-4e44-9c8b-d329ed396872", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "date" : "Mon, 18 Jun 2018 21:41:28 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "4b0b897d-87b7-40dd-8682-9c79a3bb9393", + "content-length" : "527", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7f29893d-ed6a-4e44-9c8b-d329ed396872" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"linkedRedisCacheLocation\":\"East US\",\"provisioningState\":\"Syncing\",\"serverRole\":\"Primary\"}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214200Z:d3cf84ef-beda-4e7d-a7da-5b14ee494acc", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "date" : "Mon, 18 Jun 2018 21:41:59 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f808999b-5bea-486b-8f70-f1ec243be599", + "content-length" : "527", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d3cf84ef-beda-4e7d-a7da-5b14ee494acc" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"linkedRedisCacheLocation\":\"East US\",\"provisioningState\":\"Syncing\",\"serverRole\":\"Primary\"}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214230Z:cd8f4bd6-db7a-4a95-9e95-a64da5e87795", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "date" : "Mon, 18 Jun 2018 21:42:29 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d0e22886-2e33-440b-bcf3-53606778a5f3", + "content-length" : "527", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cd8f4bd6-db7a-4a95-9e95-a64da5e87795" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"linkedRedisCacheLocation\":\"East US\",\"provisioningState\":\"Succeeded\",\"serverRole\":\"Primary\"}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214300Z:0dd3ab98-57fe-4ec2-8ea9-2144b6c0856c", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "date" : "Mon, 18 Jun 2018 21:42:59 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "1f9c36b7-83b2-4ea1-aa59-2a0d8f3c9031", + "content-length" : "529", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0dd3ab98-57fe-4ec2-8ea9-2144b6c0856c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"linkedRedisCacheLocation\":\"East US\",\"provisioningState\":\"Succeeded\",\"serverRole\":\"Primary\"}}]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214300Z:88cbadc2-3f0a-4977-8c85-c933b143f8dc", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "date" : "Mon, 18 Jun 2018 21:42:59 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "02c6e51f-3202-498f-8d3d-6e226b253108", + "content-length" : "541", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "88cbadc2-3f0a-4977-8c85-c933b143f8dc" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"linkedRedisCacheLocation\":\"East US\",\"provisioningState\":\"Succeeded\",\"serverRole\":\"Primary\"}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214301Z:705ceba8-2a52-4209-8aa6-0c7bde477095", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "date" : "Mon, 18 Jun 2018 21:43:00 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3fd336f9-711e-40af-bd37-664f324751fc", + "content-length" : "529", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "705ceba8-2a52-4209-8aa6-0c7bde477095" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis/linkedServers\",\"properties\":{\"linkedRedisCacheId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"linkedRedisCacheLocation\":\"East US\",\"provisioningState\":\"Succeeded\",\"serverRole\":\"Primary\"}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214301Z:fb377468-e58b-4819-bb96-9faa7b87b9a3", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "date" : "Mon, 18 Jun 2018 21:43:00 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a4fa0740-b7f5-4943-8757-92fddac4fc1a", + "content-length" : "529", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fb377468-e58b-4819-bb96-9faa7b87b9a3" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "Body" : "", + "x-ms-routing-request-id" : "WESTUS:20180618T214301Z:619ea076-9ce0-475e-be1f-2385c9f369fc", + "date" : "Mon, 18 Jun 2018 21:43:01 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "6da03334-c1b3-467f-acc2-b35a37762979", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "619ea076-9ce0-475e-be1f-2385c9f369fc", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214332Z:7f88de5d-8d4f-430f-944d-87d681ca4e5e", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "date" : "Mon, 18 Jun 2018 21:43:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "18d90ddb-1178-4ff8-aa64-c53d2c2cc0cf", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7f88de5d-8d4f-430f-944d-87d681ca4e5e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Unlinking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214332Z:9bee42bd-54c4-49c1-91d9-a3ba23914d1e", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "date" : "Mon, 18 Jun 2018 21:43:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "9926ab6b-d4e4-4dbb-bd40-d5aa7b835270", + "content-length" : "826", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9bee42bd-54c4-49c1-91d9-a3ba23914d1e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214402Z:764108d8-01a7-4dd5-8516-12a8175a10b4", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "date" : "Mon, 18 Jun 2018 21:44:01 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a1b4b34d-b2b6-4a68-8dfe-6ee0ba3622ea", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "764108d8-01a7-4dd5-8516-12a8175a10b4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Unlinking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers/javacsmrc31217Second\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214402Z:deda0abf-70aa-4e2a-b2cc-0355909d9667", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "date" : "Mon, 18 Jun 2018 21:44:02 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "558cbc96-0b58-456b-aea7-a810abeb893c", + "content-length" : "826", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "deda0abf-70aa-4e2a-b2cc-0355909d9667" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214432Z:63bc42d1-18e6-4641-96d2-3773748a73e7", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "date" : "Mon, 18 Jun 2018 21:44:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "4f0367c3-2942-453b-9e7d-fa77deebabc3", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "63bc42d1-18e6-4641-96d2-3773748a73e7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214433Z:7e4a7dea-a834-4aa4-8ce9-54da19814b5a", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "date" : "Mon, 18 Jun 2018 21:44:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "207ed3d4-d513-4f03-9e0f-977cd7645ed0", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7e4a7dea-a834-4aa4-8ce9-54da19814b5a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214503Z:48b7f506-c156-451b-adb1-426a6ebf5dcb", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "date" : "Mon, 18 Jun 2018 21:45:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "47c17d36-2c9d-4370-bf44-408ae9436d1e", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "48b7f506-c156-451b-adb1-426a6ebf5dcb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214503Z:a7d24ebd-ef29-4af9-b95d-992185ffed5f", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "date" : "Mon, 18 Jun 2018 21:45:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c22a9d05-4b42-4988-a65b-c202c407c888", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a7d24ebd-ef29-4af9-b95d-992185ffed5f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214533Z:a95cc72a-a0d3-4684-a197-410cfd3a3c57", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "date" : "Mon, 18 Jun 2018 21:45:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f53a2062-2a67-40f5-9adb-46b51e227a74", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a95cc72a-a0d3-4684-a197-410cfd3a3c57" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214533Z:413d4940-b603-4232-b637-119a1b48b03d", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "date" : "Mon, 18 Jun 2018 21:45:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3ad97498-f38d-44a0-a012-144a30f5c5e6", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "413d4940-b603-4232-b637-119a1b48b03d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214604Z:971222e0-d733-4969-8bf5-4c251b06a8de", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "date" : "Mon, 18 Jun 2018 21:46:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8a9cebf6-77b2-4fa8-b01c-301c0a3204de", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "971222e0-d733-4969-8bf5-4c251b06a8de" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214604Z:1eb18fb5-c751-49f3-9f36-52a735042454", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "date" : "Mon, 18 Jun 2018 21:46:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "9e6f89e3-7ea8-4186-89a0-480f96bef825", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1eb18fb5-c751-49f3-9f36-52a735042454" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214634Z:36d289e9-6536-4f49-b4e1-fb3dacbf53d0", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "date" : "Mon, 18 Jun 2018 21:46:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "57ea6f5a-0dba-45a8-ad84-e6c3e56a824b", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "36d289e9-6536-4f49-b4e1-fb3dacbf53d0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214634Z:99bdd5c6-2b63-4241-944f-ede621810e0a", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "date" : "Mon, 18 Jun 2018 21:46:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "e5c32fb3-73fb-4ebb-847a-897e1b506115", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "99bdd5c6-2b63-4241-944f-ede621810e0a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214704Z:a8e64543-4357-4bc7-8f82-f268082ddc66", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "date" : "Mon, 18 Jun 2018 21:47:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3ef84d92-3c53-493f-987b-73893129ae2f", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a8e64543-4357-4bc7-8f82-f268082ddc66" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214704Z:9327f994-2339-4665-9a26-0c98c4d8974a", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "date" : "Mon, 18 Jun 2018 21:47:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "840fe985-3a39-4631-b632-dd603ef10ff5", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9327f994-2339-4665-9a26-0c98c4d8974a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214735Z:dfd439ea-f253-4a35-aaca-16ff81a64aea", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "date" : "Mon, 18 Jun 2018 21:47:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f8ca3a41-f7f4-4847-9deb-836bc8ccef99", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "dfd439ea-f253-4a35-aaca-16ff81a64aea" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214735Z:7e1a3a6d-d1bb-4238-add7-884bad4c9cf0", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "date" : "Mon, 18 Jun 2018 21:47:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "1d2082b4-84c3-4308-ae43-0eb5790c6e9c", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7e1a3a6d-d1bb-4238-add7-884bad4c9cf0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214805Z:e708a643-b2e6-4460-bfd6-04ce33fe2302", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", + "date" : "Mon, 18 Jun 2018 21:48:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "458410f6-a0ab-496b-9416-614690ad9581", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e708a643-b2e6-4460-bfd6-04ce33fe2302" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214805Z:43dc5bd1-1bd3-4284-aca3-81e385ee3108", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", + "date" : "Mon, 18 Jun 2018 21:48:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "596f9b56-e3e2-4373-80f3-6d586f8dc38d", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "43dc5bd1-1bd3-4284-aca3-81e385ee3108" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214835Z:8e60f6d6-dbf2-4c73-a581-5c3889c13476", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", + "date" : "Mon, 18 Jun 2018 21:48:35 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3fd6edfd-d604-4e24-b280-d1b69a247137", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8e60f6d6-dbf2-4c73-a581-5c3889c13476" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214836Z:abf2108e-f055-48a8-b57d-07358a7cd116", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", + "date" : "Mon, 18 Jun 2018 21:48:36 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d12af5f0-3cf4-44da-849f-7890d75c60e5", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "abf2108e-f055-48a8-b57d-07358a7cd116" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214906Z:4a93a2f8-d5fd-471f-84b2-1fcadcffd49e", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", + "date" : "Mon, 18 Jun 2018 21:49:06 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "014ce6b8-a662-41fa-94b5-163069accc67", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4a93a2f8-d5fd-471f-84b2-1fcadcffd49e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214906Z:ce9f8b7e-8719-4311-af10-ef7b49ef3415", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", + "date" : "Mon, 18 Jun 2018 21:49:06 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "51329922-f1b0-4a2f-a46a-287ab4433902", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ce9f8b7e-8719-4311-af10-ef7b49ef3415" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214936Z:cecf5c75-1ba7-4af8-bffe-f7322c43aa02", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", + "date" : "Mon, 18 Jun 2018 21:49:36 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2333e41e-a174-4217-b46b-7f0405a3083b", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cecf5c75-1ba7-4af8-bffe-f7322c43aa02" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T214936Z:cd8df115-e48d-4db9-a163-3118926043bb", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "date" : "Mon, 18 Jun 2018 21:49:36 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "0fe7a027-bb43-4bed-ab60-2cb1b26a41fe", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cd8df115-e48d-4db9-a163-3118926043bb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215007Z:4dddfcae-7cb4-45cf-aeb8-97f9b5f8b351", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "date" : "Mon, 18 Jun 2018 21:50:06 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "09941b11-9a67-4777-af9e-9d45bf4d415b", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4dddfcae-7cb4-45cf-aeb8-97f9b5f8b351" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215007Z:7f148f20-faa6-4bd6-a625-86a7f279d075", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "date" : "Mon, 18 Jun 2018 21:50:06 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "dd503909-9f68-4ed3-bd36-4b101dbb8b4b", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7f148f20-faa6-4bd6-a625-86a7f279d075" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215037Z:259e2093-944b-4cab-830e-bca9b0b75fca", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "date" : "Mon, 18 Jun 2018 21:50:36 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "b3d81d36-8465-4f37-bc32-28579c1d9c92", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "259e2093-944b-4cab-830e-bca9b0b75fca" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215037Z:1f8860d9-1888-4100-9fdf-261796973eff", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "date" : "Mon, 18 Jun 2018 21:50:37 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2057509e-1126-4bb5-8713-2c7653a198d2", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1f8860d9-1888-4100-9fdf-261796973eff" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215107Z:1a9574da-2393-49f6-9410-b898b8aa8738", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "date" : "Mon, 18 Jun 2018 21:51:07 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "63396c03-4d46-46b5-8f37-e0dd9c52774b", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1a9574da-2393-49f6-9410-b898b8aa8738" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215107Z:dc96d266-1ef2-45b7-8a66-a2002d8d3afa", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "date" : "Mon, 18 Jun 2018 21:51:07 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "b72bf417-0f27-4ea5-90ae-7c5d1bc3da84", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "dc96d266-1ef2-45b7-8a66-a2002d8d3afa" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215138Z:028d5663-5473-4782-8600-e43355dd091e", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "date" : "Mon, 18 Jun 2018 21:51:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c0970b38-0ae6-4919-a699-0528127ce7bf", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "028d5663-5473-4782-8600-e43355dd091e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215138Z:2f2a641a-2da6-4ce6-8360-2536ae265b2a", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "date" : "Mon, 18 Jun 2018 21:51:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "169c985e-404d-48c0-8db2-2bd6b8f8257d", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2f2a641a-2da6-4ce6-8360-2536ae265b2a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215208Z:3454e8c0-0abc-4335-beed-a93b8b0586ba", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "date" : "Mon, 18 Jun 2018 21:52:08 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "ef71693d-0d1c-4a68-9b28-7d578f2d748c", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3454e8c0-0abc-4335-beed-a93b8b0586ba" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215208Z:184d286b-a26b-4b8c-acaf-5987153ce882", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "date" : "Mon, 18 Jun 2018 21:52:08 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "bf4e55e5-df6b-4632-8113-4475a177b0ce", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "184d286b-a26b-4b8c-acaf-5987153ce882" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215238Z:c2fb391c-d37f-4a92-8657-79785a4e1774", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "date" : "Mon, 18 Jun 2018 21:52:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "210edf29-87e2-4727-9214-a7b89c939f10", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c2fb391c-d37f-4a92-8657-79785a4e1774" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215239Z:595094a3-f571-4ef0-b00d-4449b1d39e81", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "date" : "Mon, 18 Jun 2018 21:52:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "044efcdf-8208-4b3d-8536-a7800cef0aeb", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "595094a3-f571-4ef0-b00d-4449b1d39e81" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215309Z:621e66c6-bb16-492b-b050-3d4161f751e5", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "date" : "Mon, 18 Jun 2018 21:53:08 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f4e9a122-7f94-4ae1-91a9-aa733fed106b", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "621e66c6-bb16-492b-b050-3d4161f751e5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215309Z:53a4e328-0a7e-4044-b992-1a4873434ceb", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "date" : "Mon, 18 Jun 2018 21:53:08 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c0e9a366-da82-4f1c-8d56-d000e9a73cab", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "53a4e328-0a7e-4044-b992-1a4873434ceb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215339Z:97bc48ba-49ab-468d-a59a-e04f95e1b57d", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "date" : "Mon, 18 Jun 2018 21:53:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "fe1902b4-4d30-44ea-af99-f28d76f8d8d2", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "97bc48ba-49ab-468d-a59a-e04f95e1b57d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215339Z:cfb6bed9-d9dc-44a1-b597-070a60639e79", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "date" : "Mon, 18 Jun 2018 21:53:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d6b817bc-4b0f-47c9-9db4-14d4fe667d5b", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cfb6bed9-d9dc-44a1-b597-070a60639e79" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215409Z:7fbcf09a-d1a2-4ea8-b122-5dd898524e77", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "date" : "Mon, 18 Jun 2018 21:54:09 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "ad9c2d01-ad44-4bad-a5c1-aa55363d688a", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7fbcf09a-d1a2-4ea8-b122-5dd898524e77" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215409Z:f6f86cd9-b982-4e51-886e-9c093148b140", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "date" : "Mon, 18 Jun 2018 21:54:09 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8c75e1ec-caf3-4dc5-8822-3dca87d20b29", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f6f86cd9-b982-4e51-886e-9c093148b140" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215440Z:7ab83363-a1e9-4967-9984-f065862ab16c", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "date" : "Mon, 18 Jun 2018 21:54:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d65e30d0-6128-4e3e-813e-bbcdb363ec25", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7ab83363-a1e9-4967-9984-f065862ab16c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215440Z:d98d306a-cb9b-4363-83e9-9ba114668bb5", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "date" : "Mon, 18 Jun 2018 21:54:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2b82da4f-0d64-48f8-9c1d-5828dbc227ee", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d98d306a-cb9b-4363-83e9-9ba114668bb5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215510Z:34a17550-dd2f-45c0-ac84-a41084dad13c", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "date" : "Mon, 18 Jun 2018 21:55:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "188fc43a-35cb-4f80-8638-cc034bdb419b", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "34a17550-dd2f-45c0-ac84-a41084dad13c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215510Z:6c6a2114-59c8-4322-9b53-35d237c470dd", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "date" : "Mon, 18 Jun 2018 21:55:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "7dfedd11-a536-46ac-8dd1-611897db5d09", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6c6a2114-59c8-4322-9b53-35d237c470dd" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215540Z:122f6de2-5c58-40eb-9f18-054db5fc653c", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "date" : "Mon, 18 Jun 2018 21:55:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f8e2d768-5405-4a36-88e5-fffa1db067b4", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "122f6de2-5c58-40eb-9f18-054db5fc653c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215541Z:e7078794-019c-4035-99c9-bc5172f08337", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "date" : "Mon, 18 Jun 2018 21:55:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "ec075bfa-724d-4044-aeca-ab6abc74ac3f", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e7078794-019c-4035-99c9-bc5172f08337" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215611Z:b94682e3-4410-49e4-b75a-32b8c04c2dd7", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "date" : "Mon, 18 Jun 2018 21:56:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "7289e2ea-51ab-417f-a19a-d445a1e2586e", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b94682e3-4410-49e4-b75a-32b8c04c2dd7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215611Z:e60ac82b-917c-4360-b4d4-6fd5aee36c4a", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "date" : "Mon, 18 Jun 2018 21:56:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "bdb783c1-f7e3-4561-9c18-516ddee6618f", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e60ac82b-917c-4360-b4d4-6fd5aee36c4a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215641Z:ab13fffb-e501-46b8-80a5-be318c83b432", + "x-ms-ratelimit-remaining-subscription-reads" : "14885", + "date" : "Mon, 18 Jun 2018 21:56:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "27c4155e-9d1e-4383-a2af-a2767c2c31a1", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ab13fffb-e501-46b8-80a5-be318c83b432" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215641Z:2f2856b4-74bb-41e6-aa3d-8c7d6c4f4747", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "date" : "Mon, 18 Jun 2018 21:56:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "0dc83681-6574-4af4-9059-8275b35abcae", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2f2856b4-74bb-41e6-aa3d-8c7d6c4f4747" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215711Z:57520d9b-801e-4685-ade1-4487711779ff", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "date" : "Mon, 18 Jun 2018 21:57:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "35e04b78-7618-4128-8739-babec446f779", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "57520d9b-801e-4685-ade1-4487711779ff" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215712Z:3299fe81-6a2e-4176-a747-27d061c42355", + "x-ms-ratelimit-remaining-subscription-reads" : "14882", + "date" : "Mon, 18 Jun 2018 21:57:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8026a06b-9c38-4906-8f7b-efb107696bfa", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3299fe81-6a2e-4176-a747-27d061c42355" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215742Z:284b5356-a999-4fbb-b99b-9e186e40e00c", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "date" : "Mon, 18 Jun 2018 21:57:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5d803105-0c09-4868-8d3a-dae1f4bfb4c4", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "284b5356-a999-4fbb-b99b-9e186e40e00c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215742Z:9273a682-b583-421a-8ccf-8a79a7439fb4", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", + "date" : "Mon, 18 Jun 2018 21:57:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "51991fbe-3119-4bdf-9737-9a2f7c67b48b", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9273a682-b583-421a-8ccf-8a79a7439fb4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215812Z:abeb0cae-fc13-47fe-abdb-14a389e0b347", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", + "date" : "Mon, 18 Jun 2018 21:58:12 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "91eb9efb-e628-4bb8-890f-7cd4dbd43d09", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "abeb0cae-fc13-47fe-abdb-14a389e0b347" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215812Z:fdc44b1d-ed17-4cb5-a7e8-ae4fff045151", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "date" : "Mon, 18 Jun 2018 21:58:12 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "7624e52f-5d3f-4524-812c-83a2efa2fc75", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fdc44b1d-ed17-4cb5-a7e8-ae4fff045151" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215843Z:5f52d12f-5fa2-4bc9-b8fa-d485b766f622", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "date" : "Mon, 18 Jun 2018 21:58:42 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "07a611eb-e3d4-47f7-83ae-56e9718f9c79", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5f52d12f-5fa2-4bc9-b8fa-d485b766f622" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215843Z:4e2d5b58-b785-4454-b13f-08a60d150e24", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "date" : "Mon, 18 Jun 2018 21:58:42 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "e81da6f0-64fa-42e2-8e1f-56f292aa192b", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4e2d5b58-b785-4454-b13f-08a60d150e24" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215913Z:52c97119-1c5b-47ee-8c39-ed70008da5ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "date" : "Mon, 18 Jun 2018 21:59:12 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f6ca2b97-cbf9-4cda-893a-75b580a22868", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "52c97119-1c5b-47ee-8c39-ed70008da5ed" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215913Z:87437eca-0902-4530-9e4e-b1ceafa44052", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", + "date" : "Mon, 18 Jun 2018 21:59:12 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "e765c21d-d9f9-47f6-aba0-7a5c6261a38b", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "87437eca-0902-4530-9e4e-b1ceafa44052" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215943Z:7e0b8505-2ec0-494b-8531-df29437d5ace", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", + "date" : "Mon, 18 Jun 2018 21:59:42 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "4572a5fb-6286-4aff-b43b-a93529ca1c22", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7e0b8505-2ec0-494b-8531-df29437d5ace" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T215943Z:227fc3ce-36bb-45d7-979a-3413b964a25b", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "date" : "Mon, 18 Jun 2018 21:59:42 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "eb76a51c-627e-4f59-a933-1655fc85dbba", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "227fc3ce-36bb-45d7-979a-3413b964a25b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220013Z:cd4cade3-39be-4d80-a34b-292355d85c4b", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "date" : "Mon, 18 Jun 2018 22:00:13 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d392ff3a-3938-4c97-bee5-2275430224b7", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cd4cade3-39be-4d80-a34b-292355d85c4b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220014Z:696b91a9-a928-42e0-91a3-bc0675411bf4", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "date" : "Mon, 18 Jun 2018 22:00:14 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "63d8a740-eea0-40b5-bc00-913216839ca8", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "696b91a9-a928-42e0-91a3-bc0675411bf4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220044Z:706b5969-58ae-4e96-99d1-d441b966f96c", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "date" : "Mon, 18 Jun 2018 22:00:44 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "18ae1348-1cc4-49d4-b0fc-264433345f83", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "706b5969-58ae-4e96-99d1-d441b966f96c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220044Z:435b8f4d-de61-417e-b0db-54b215f9e17a", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "date" : "Mon, 18 Jun 2018 22:00:44 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "61c6d8bd-e049-46a3-8839-dc65f06d6acd", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "435b8f4d-de61-417e-b0db-54b215f9e17a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220114Z:c688ee19-a3be-4d21-898c-073d1fe5d97a", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "date" : "Mon, 18 Jun 2018 22:01:14 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "11459b54-8c0b-402c-a0d4-fea6ba3c9d45", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c688ee19-a3be-4d21-898c-073d1fe5d97a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220114Z:e7c4acf5-6e7b-4931-a94b-7846ebee0444", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "date" : "Mon, 18 Jun 2018 22:01:14 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "16917c94-d2a3-451f-a4d2-731d267026df", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e7c4acf5-6e7b-4931-a94b-7846ebee0444" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220145Z:5ad2a167-f242-446b-a972-e939af151130", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "date" : "Mon, 18 Jun 2018 22:01:44 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "01f42031-923b-4efa-a55d-7811d731f282", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5ad2a167-f242-446b-a972-e939af151130" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220145Z:e1027a76-568f-4332-997a-0d72b03010fc", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "date" : "Mon, 18 Jun 2018 22:01:44 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "6396be29-5b8a-40ab-9681-76b51d472f30", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e1027a76-568f-4332-997a-0d72b03010fc" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220215Z:fb166132-6820-44ff-9410-0de808679ed3", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "date" : "Mon, 18 Jun 2018 22:02:14 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "28f2c4f8-8d51-4f30-a3d6-c5d2f120f15b", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fb166132-6820-44ff-9410-0de808679ed3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220215Z:04e1f080-9c57-4304-aeec-d1feb69fb7b6", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "date" : "Mon, 18 Jun 2018 22:02:14 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "6e6d269b-7ee1-453d-bcc7-067bbd48d8be", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "04e1f080-9c57-4304-aeec-d1feb69fb7b6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220246Z:2233442a-88ac-4c02-9c0a-d9ed15231581", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "date" : "Mon, 18 Jun 2018 22:02:46 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3afdd55b-b4b1-4fde-be94-526973698cd8", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2233442a-88ac-4c02-9c0a-d9ed15231581" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220246Z:40a9ff11-d61b-4e6e-959f-da7f2180baa6", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "date" : "Mon, 18 Jun 2018 22:02:46 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "93cbc608-77e7-42b8-b39c-1bff4d17dabe", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "40a9ff11-d61b-4e6e-959f-da7f2180baa6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220316Z:22162d81-c2f1-4784-955d-2a80cbeff1c4", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", + "date" : "Mon, 18 Jun 2018 22:03:16 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c980d979-5272-42ca-bd8d-34cfdedad1e3", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "22162d81-c2f1-4784-955d-2a80cbeff1c4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220316Z:ea9d1f54-1190-4581-8f5d-d493e5dd4143", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "date" : "Mon, 18 Jun 2018 22:03:16 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3ca8fd7d-00b4-497b-b95b-3299cf650ebf", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ea9d1f54-1190-4581-8f5d-d493e5dd4143" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220346Z:8c96c758-c91e-42e0-b0f8-bcad9d744ce7", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "date" : "Mon, 18 Jun 2018 22:03:46 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "4f83ba9c-302c-4026-9c27-98fd672ae9e3", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8c96c758-c91e-42e0-b0f8-bcad9d744ce7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220346Z:b31cc091-58b3-4f93-a865-14397213da5e", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "date" : "Mon, 18 Jun 2018 22:03:46 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "11d112f9-b405-41d2-9683-2d7c43ef6564", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b31cc091-58b3-4f93-a865-14397213da5e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220417Z:b2dc70d4-1c73-45cc-9f9b-f13ef0fad858", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "date" : "Mon, 18 Jun 2018 22:04:16 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2118627c-ba36-47bb-9007-5b00d9702d0e", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b2dc70d4-1c73-45cc-9f9b-f13ef0fad858" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220417Z:ebe8d43a-e304-4b86-8b7b-cbcb42eab6cd", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "date" : "Mon, 18 Jun 2018 22:04:16 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "6546ab29-a0dc-4d92-83fd-e394bb62b005", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ebe8d43a-e304-4b86-8b7b-cbcb42eab6cd" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220448Z:573b7156-cdb5-487b-9610-1c8ea3958cc8", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "date" : "Mon, 18 Jun 2018 22:04:48 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a860a3a9-bd23-4c21-a4fd-7848d921abde", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "573b7156-cdb5-487b-9610-1c8ea3958cc8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220448Z:01f65c25-bd64-4d92-9686-89fd5e6d6d5f", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "date" : "Mon, 18 Jun 2018 22:04:48 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d9708f20-1266-440b-939c-8bd79396e637", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "01f65c25-bd64-4d92-9686-89fd5e6d6d5f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220518Z:c7542c23-dc38-4c02-be33-2982841b6670", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "date" : "Mon, 18 Jun 2018 22:05:17 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8eadae44-cbe7-406a-b1cc-502d7c378ed0", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c7542c23-dc38-4c02-be33-2982841b6670" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220518Z:5a497019-ed3a-42a6-a983-331be59a521f", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "date" : "Mon, 18 Jun 2018 22:05:17 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8104a775-17ba-4906-b7d2-c5f6d218e6c4", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5a497019-ed3a-42a6-a983-331be59a521f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220548Z:816a98a4-0bd9-4a30-8456-d13efb658dda", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "date" : "Mon, 18 Jun 2018 22:05:48 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "172979ce-61a9-4bc6-b827-84d8eef357ad", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "816a98a4-0bd9-4a30-8456-d13efb658dda" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220549Z:4191efea-b54d-4f4d-ba40-10ec839171ee", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "date" : "Mon, 18 Jun 2018 22:05:48 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "00170095-1b7e-4bbf-8dab-93ac2ec4b8e5", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4191efea-b54d-4f4d-ba40-10ec839171ee" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220619Z:f7246999-351a-4595-aac6-c2a825147d20", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", + "date" : "Mon, 18 Jun 2018 22:06:19 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "e8fdb7f5-8b7b-42d4-b8f7-ae1c3f88d339", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f7246999-351a-4595-aac6-c2a825147d20" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220619Z:b2c5b0d3-c9ff-4134-b1ff-5073e48050cc", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "date" : "Mon, 18 Jun 2018 22:06:19 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c578a37d-ebb7-4197-88d8-a6b70628043c", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b2c5b0d3-c9ff-4134-b1ff-5073e48050cc" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220649Z:cd964413-b45c-46c4-8324-9766debd4b85", + "x-ms-ratelimit-remaining-subscription-reads" : "14845", + "date" : "Mon, 18 Jun 2018 22:06:49 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f61ec33a-3e36-4f57-90ae-7d2e6ab5def7", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cd964413-b45c-46c4-8324-9766debd4b85" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220649Z:8f97f2c1-a793-47db-b209-c4955b346ba1", + "x-ms-ratelimit-remaining-subscription-reads" : "14844", + "date" : "Mon, 18 Jun 2018 22:06:49 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "02a13b3d-34fd-4cb3-9312-24ed1623a271", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8f97f2c1-a793-47db-b209-c4955b346ba1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220720Z:356fd980-9cb3-46af-9c42-fef19d77afdb", + "x-ms-ratelimit-remaining-subscription-reads" : "14843", + "date" : "Mon, 18 Jun 2018 22:07:19 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "715735c2-cd67-4f20-9d75-4f9af395f52e", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "356fd980-9cb3-46af-9c42-fef19d77afdb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220720Z:553a0a9f-b3a8-4334-bd53-e82a8f9e6e27", + "x-ms-ratelimit-remaining-subscription-reads" : "14842", + "date" : "Mon, 18 Jun 2018 22:07:19 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d9837a78-f02b-409c-ae76-85fd85c9ed35", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "553a0a9f-b3a8-4334-bd53-e82a8f9e6e27" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220750Z:845d5afc-4ffe-4654-8ea8-99157f62dc37", + "x-ms-ratelimit-remaining-subscription-reads" : "14841", + "date" : "Mon, 18 Jun 2018 22:07:49 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "0f9e2374-d92c-40c2-b4fc-bd96373e06b1", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "845d5afc-4ffe-4654-8ea8-99157f62dc37" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220750Z:cc50bf6a-59f1-487c-a8b9-38de26ef48c8", + "x-ms-ratelimit-remaining-subscription-reads" : "14840", + "date" : "Mon, 18 Jun 2018 22:07:49 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "b9c5fa0d-836a-4ad7-95a5-b092e81854df", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cc50bf6a-59f1-487c-a8b9-38de26ef48c8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220820Z:53c4a967-304a-4299-98c6-8e2f49511aba", + "x-ms-ratelimit-remaining-subscription-reads" : "14839", + "date" : "Mon, 18 Jun 2018 22:08:20 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "24b84a60-5c7b-495e-96f8-27957b626730", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "53c4a967-304a-4299-98c6-8e2f49511aba" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220820Z:a408aebf-9065-48e9-9fca-ea95c7fd60cb", + "x-ms-ratelimit-remaining-subscription-reads" : "14838", + "date" : "Mon, 18 Jun 2018 22:08:20 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "59c6aad5-35f0-4165-8b23-edc8e678861c", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a408aebf-9065-48e9-9fca-ea95c7fd60cb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220851Z:81315004-9989-4fa3-99a9-c1373e0335dd", + "x-ms-ratelimit-remaining-subscription-reads" : "14837", + "date" : "Mon, 18 Jun 2018 22:08:50 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "578eda49-86f9-4940-926a-0c3619654c38", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "81315004-9989-4fa3-99a9-c1373e0335dd" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220851Z:861c0e91-e0e9-4485-86fc-7faf45d933e1", + "x-ms-ratelimit-remaining-subscription-reads" : "14836", + "date" : "Mon, 18 Jun 2018 22:08:50 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "36d48d09-1e84-49cb-b7d7-f410800f2fa7", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "861c0e91-e0e9-4485-86fc-7faf45d933e1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220921Z:1e9ed445-b8d8-4046-b0c9-c5a758a9d5c7", + "x-ms-ratelimit-remaining-subscription-reads" : "14835", + "date" : "Mon, 18 Jun 2018 22:09:20 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3467be67-2003-4a18-811d-3023e7b773dd", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1e9ed445-b8d8-4046-b0c9-c5a758a9d5c7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220921Z:48631293-d430-4b21-a6ea-c9d749c16ba1", + "x-ms-ratelimit-remaining-subscription-reads" : "14834", + "date" : "Mon, 18 Jun 2018 22:09:20 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "0a2fdf79-4272-4a03-9996-1894cd0bcc40", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "48631293-d430-4b21-a6ea-c9d749c16ba1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220952Z:68643477-7141-455e-b1dd-c8bcac4eaf27", + "x-ms-ratelimit-remaining-subscription-reads" : "14833", + "date" : "Mon, 18 Jun 2018 22:09:51 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c4f9c279-67ec-4c8d-b0b8-88ea879f9f40", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "68643477-7141-455e-b1dd-c8bcac4eaf27" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T220952Z:917b7c04-d73a-4a88-bd23-242d9f41d96a", + "x-ms-ratelimit-remaining-subscription-reads" : "14832", + "date" : "Mon, 18 Jun 2018 22:09:51 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3b706e0c-b069-4d4e-9676-503e67817f0e", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "917b7c04-d73a-4a88-bd23-242d9f41d96a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221022Z:99a8ce5c-b724-4478-98dc-c3500909e405", + "x-ms-ratelimit-remaining-subscription-reads" : "14831", + "date" : "Mon, 18 Jun 2018 22:10:21 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5ba5b489-2665-4ed5-ab11-60c28c7a5c2f", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "99a8ce5c-b724-4478-98dc-c3500909e405" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221022Z:41b2d5ab-8a3e-416e-85f5-e333556d5f61", + "x-ms-ratelimit-remaining-subscription-reads" : "14830", + "date" : "Mon, 18 Jun 2018 22:10:21 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "81761ac0-b85a-44cb-acda-db9d7ca5e65a", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "41b2d5ab-8a3e-416e-85f5-e333556d5f61" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221052Z:ee74825f-eef7-4cbb-8d6c-a71e723bedb7", + "x-ms-ratelimit-remaining-subscription-reads" : "14829", + "date" : "Mon, 18 Jun 2018 22:10:52 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "7a4b1531-c766-4895-ab90-47d70f3a4ec3", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ee74825f-eef7-4cbb-8d6c-a71e723bedb7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221053Z:6e0c07d1-1227-4d03-89d8-5af28e18c5c2", + "x-ms-ratelimit-remaining-subscription-reads" : "14828", + "date" : "Mon, 18 Jun 2018 22:10:52 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "4673f331-e4a1-4283-8a9c-1c18629204e2", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6e0c07d1-1227-4d03-89d8-5af28e18c5c2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Linking\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221123Z:9888ae1c-b1e1-4be9-9334-16e55b0f8b75", + "x-ms-ratelimit-remaining-subscription-reads" : "14827", + "date" : "Mon, 18 Jun 2018 22:11:23 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "dcb8a90d-a4a6-4a57-92ae-569831fd0cf1", + "content-length" : "825", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9888ae1c-b1e1-4be9-9334-16e55b0f8b75" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221123Z:e5c09321-acf3-4353-9f7b-c7101a7f36c5", + "x-ms-ratelimit-remaining-subscription-reads" : "14826", + "date" : "Mon, 18 Jun 2018 22:11:23 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2c4b1897-edfb-4a06-86d3-602899ee4f6d", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e5c09321-acf3-4353-9f7b-c7101a7f36c5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221153Z:bbb9a0b5-3296-4d79-bdfc-6709f8d5feea", + "x-ms-ratelimit-remaining-subscription-reads" : "14825", + "date" : "Mon, 18 Jun 2018 22:11:53 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "4d50f73d-8646-4f0a-b696-264d19f76a4b", + "content-length" : "827", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bbb9a0b5-3296-4d79-bdfc-6709f8d5feea" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221153Z:fa0d4252-ff6f-4670-8b9e-032cea2d513f", + "x-ms-ratelimit-remaining-subscription-reads" : "14824", + "date" : "Mon, 18 Jun 2018 22:11:53 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8bf23ad6-ad27-45dc-88ef-5cfb201e2ad9", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fa0d4252-ff6f-4670-8b9e-032cea2d513f" + } + }, { + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221154Z:13b9bb69-cd73-4d19-9d47-5b5c5499d710", + "date" : "Mon, 18 Jun 2018 22:11:54 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "80b68c62-02b6-4209-ad18-e3f7d8ee32c6", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "13b9bb69-cd73-4d19-9d47-5b5c5499d710" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/patchSchedules/default?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "Body" : "", + "x-ms-routing-request-id" : "WESTUS:20180618T221155Z:3fe7b100-c88b-4098-affc-6a60538d3684", + "date" : "Mon, 18 Jun 2018 22:11:54 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "52a453f0-02d2-49d2-8833-3d735d1ef7bf", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3fe7b100-c88b-4098-affc-6a60538d3684", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third\",\"location\":\"Central US\",\"name\":\"javacsmrc31217Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221155Z:4e27bded-ee75-4a21-9bce-59d57c303916", + "x-ms-ratelimit-remaining-subscription-reads" : "14823", + "date" : "Mon, 18 Jun 2018 22:11:54 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "411c716d-3b64-4d88-af94-5a255220d6b9", + "content-length" : "643", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4e27bded-ee75-4a21-9bce-59d57c303916" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/firewallRules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/firewallRules/rule1\",\"name\":\"javacsmrc31217Third/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/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/firewallRules/rule2\",\"name\":\"javacsmrc31217Third/rule2\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"}}]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221155Z:572db997-e47b-4fc0-81bd-b9852c44751e", + "x-ms-ratelimit-remaining-subscription-reads" : "14822", + "date" : "Mon, 18 Jun 2018 22:11:54 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "fc194218-3dc7-4db7-939f-b9f176cb5c3b", + "content-length" : "633", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "572db997-e47b-4fc0-81bd-b9852c44751e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/patchSchedules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc31217Third'.\\r\\nRequestID=57868f7c-de7f-41d7-bf4d-297ec5f5a4b2\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS:20180618T221155Z:c2988a33-179b-463f-a16b-cb9b2ed3629a", + "x-ms-ratelimit-remaining-subscription-reads" : "14821", + "date" : "Mon, 18 Jun 2018 22:11:54 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "57868f7c-de7f-41d7-bf4d-297ec5f5a4b2", + "content-length" : "187", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c2988a33-179b-463f-a16b-cb9b2ed3629a" + } + }, { + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second\",\"location\":\"East US\",\"name\":\"javacsmrc31217Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc31217Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/linkedServers/javacsmrc31217Third\"}]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221155Z:c188df0d-a110-433c-b8bd-f1568be041b7", + "date" : "Mon, 18 Jun 2018 22:11:55 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "0bc2ccd7-1436-472a-9bfe-9219c021328b", + "content-length" : "827", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c188df0d-a110-433c-b8bd-f1568be041b7" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Second/firewallRules/rulesmhule?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"properties\":{\"startIP\":\"192.168.1.10\",\"endIP\":\"192.168.1.20\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second/firewallRules/rulesmhule\",\"name\":\"javacsmrc31217Second/rulesmhule\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/redis/javacsmrc31217Second/firewallRules/rulesmhule?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS:20180618T221157Z:65783cde-0318-4199-b2c9-9775af1570ff", + "date" : "Mon, 18 Jun 2018 22:11:56 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "781484a7-3dee-4c4e-934a-cf4b22235149", + "content-length" : "323", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "65783cde-0318-4199-b2c9-9775af1570ff" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg33658Second/providers/Microsoft.Cache/Redis/javacsmrc31217Third/linkedServers?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS:20180618T221157Z:0dace263-671a-45b2-a028-4bd9739b80a7", + "x-ms-ratelimit-remaining-subscription-reads" : "14820", + "date" : "Mon, 18 Jun 2018 22:11:56 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "25721f18-9731-4cf5-8f99-6c6462d938ca", + "content-length" : "12", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0dace263-671a-45b2-a028-4bd9739b80a7" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg33658?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'javacsmrg33658' could not be found.\"}}", + "x-ms-routing-request-id" : "WESTUS:20180618T221157Z:5955f3fd-18de-4067-89b3-2eeac492c42a", + "date" : "Mon, 18 Jun 2018 22:11:56 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5955f3fd-18de-4067-89b3-2eeac492c42a", + "content-length" : "106", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5955f3fd-18de-4067-89b3-2eeac492c42a", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg33658Second?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221158Z:54ec43a3-a681-4431-8921-37d99052eced", + "date" : "Mon, 18 Jun 2018 22:11:57 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "54ec43a3-a681-4431-8921-37d99052eced", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "54ec43a3-a681-4431-8921-37d99052eced", + "x-ms-ratelimit-remaining-subscription-deletes" : "14996" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221158Z:4ad1a771-aeb1-4659-822c-fd187fe7a2eb", + "x-ms-ratelimit-remaining-subscription-reads" : "14819", + "date" : "Mon, 18 Jun 2018 22:11:57 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "4ad1a771-aeb1-4659-822c-fd187fe7a2eb", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4ad1a771-aeb1-4659-822c-fd187fe7a2eb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221213Z:83999399-36bc-45e1-88d0-8fc21f3669c2", + "x-ms-ratelimit-remaining-subscription-reads" : "14818", + "date" : "Mon, 18 Jun 2018 22:12:12 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "83999399-36bc-45e1-88d0-8fc21f3669c2", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "83999399-36bc-45e1-88d0-8fc21f3669c2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221228Z:78318914-a42e-4d75-9e76-7b91bb2c5e59", + "x-ms-ratelimit-remaining-subscription-reads" : "14817", + "date" : "Mon, 18 Jun 2018 22:12:27 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "78318914-a42e-4d75-9e76-7b91bb2c5e59", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "78318914-a42e-4d75-9e76-7b91bb2c5e59" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221243Z:5d62f776-2550-427d-8ea7-e4e7beb1c1bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14816", + "date" : "Mon, 18 Jun 2018 22:12:42 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5d62f776-2550-427d-8ea7-e4e7beb1c1bd", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5d62f776-2550-427d-8ea7-e4e7beb1c1bd" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221258Z:39bd46d8-1092-46bc-a5cf-06d09b755a9d", + "x-ms-ratelimit-remaining-subscription-reads" : "14815", + "date" : "Mon, 18 Jun 2018 22:12:57 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "39bd46d8-1092-46bc-a5cf-06d09b755a9d", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "39bd46d8-1092-46bc-a5cf-06d09b755a9d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221314Z:6d332b25-9eb1-4aa3-b0ee-97826581f158", + "x-ms-ratelimit-remaining-subscription-reads" : "14814", + "date" : "Mon, 18 Jun 2018 22:13:14 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "6d332b25-9eb1-4aa3-b0ee-97826581f158", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6d332b25-9eb1-4aa3-b0ee-97826581f158" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221329Z:f2421f77-7743-439f-93d8-15f1958b4883", + "x-ms-ratelimit-remaining-subscription-reads" : "14813", + "date" : "Mon, 18 Jun 2018 22:13:29 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f2421f77-7743-439f-93d8-15f1958b4883", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f2421f77-7743-439f-93d8-15f1958b4883" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221344Z:8a5e6e38-afa9-447d-b62f-c0e971281d64", + "x-ms-ratelimit-remaining-subscription-reads" : "14812", + "date" : "Mon, 18 Jun 2018 22:13:44 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8a5e6e38-afa9-447d-b62f-c0e971281d64", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8a5e6e38-afa9-447d-b62f-c0e971281d64" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221359Z:2792302c-8907-46c0-8c8a-892f05919749", + "x-ms-ratelimit-remaining-subscription-reads" : "14811", + "date" : "Mon, 18 Jun 2018 22:13:59 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2792302c-8907-46c0-8c8a-892f05919749", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2792302c-8907-46c0-8c8a-892f05919749" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221414Z:b4964cd5-a6e9-4795-8700-3af5e966133f", + "x-ms-ratelimit-remaining-subscription-reads" : "14810", + "date" : "Mon, 18 Jun 2018 22:14:14 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "b4964cd5-a6e9-4795-8700-3af5e966133f", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b4964cd5-a6e9-4795-8700-3af5e966133f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221429Z:04edb8b7-f1e7-4471-9a08-4fc1ec091c2a", + "x-ms-ratelimit-remaining-subscription-reads" : "14809", + "date" : "Mon, 18 Jun 2018 22:14:28 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "04edb8b7-f1e7-4471-9a08-4fc1ec091c2a", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "04edb8b7-f1e7-4471-9a08-4fc1ec091c2a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221444Z:13e7b8a6-c890-4bdc-9233-3467474e43d2", + "x-ms-ratelimit-remaining-subscription-reads" : "14808", + "date" : "Mon, 18 Jun 2018 22:14:43 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "13e7b8a6-c890-4bdc-9233-3467474e43d2", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "13e7b8a6-c890-4bdc-9233-3467474e43d2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221459Z:2c8d6a5d-dd37-4dba-b7ee-9f8728fcd13c", + "x-ms-ratelimit-remaining-subscription-reads" : "14807", + "date" : "Mon, 18 Jun 2018 22:14:59 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2c8d6a5d-dd37-4dba-b7ee-9f8728fcd13c", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2c8d6a5d-dd37-4dba-b7ee-9f8728fcd13c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221515Z:571d999e-2a60-4db6-8d2b-dd12d5f5704b", + "x-ms-ratelimit-remaining-subscription-reads" : "14806", + "date" : "Mon, 18 Jun 2018 22:15:14 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "571d999e-2a60-4db6-8d2b-dd12d5f5704b", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "571d999e-2a60-4db6-8d2b-dd12d5f5704b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221530Z:a1bf5fd7-9b7d-4d8a-8656-902c1aad3cea", + "x-ms-ratelimit-remaining-subscription-reads" : "14805", + "date" : "Mon, 18 Jun 2018 22:15:29 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a1bf5fd7-9b7d-4d8a-8656-902c1aad3cea", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a1bf5fd7-9b7d-4d8a-8656-902c1aad3cea" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221545Z:988138eb-b3df-4f82-a1e6-73a8ffd5c08d", + "x-ms-ratelimit-remaining-subscription-reads" : "14804", + "date" : "Mon, 18 Jun 2018 22:15:44 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "988138eb-b3df-4f82-a1e6-73a8ffd5c08d", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "988138eb-b3df-4f82-a1e6-73a8ffd5c08d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221600Z:a18797ed-f78b-47f1-857b-882bedab1f7c", + "x-ms-ratelimit-remaining-subscription-reads" : "14803", + "date" : "Mon, 18 Jun 2018 22:15:59 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a18797ed-f78b-47f1-857b-882bedab1f7c", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a18797ed-f78b-47f1-857b-882bedab1f7c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS:20180618T221616Z:d9997ea1-ba83-41fc-8e19-0bcda9ad5e3b", + "x-ms-ratelimit-remaining-subscription-reads" : "14802", + "date" : "Mon, 18 Jun 2018 22:16:15 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d9997ea1-ba83-41fc-8e19-0bcda9ad5e3b", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d9997ea1-ba83-41fc-8e19-0bcda9ad5e3b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkczMzY1OFNFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "200", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-reads" : "14801", + "x-ms-routing-request-id" : "WESTUS:20180618T221631Z:9382d5c5-ca6b-46c8-843e-72da6f95b4ee", + "date" : "Mon, 18 Jun 2018 22:16:30 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "9382d5c5-ca6b-46c8-843e-72da6f95b4ee", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9382d5c5-ca6b-46c8-843e-72da6f95b4ee" + } + } ], + "variables" : [ "javacsmrg33658", "javacsmrc31217", "javacsmsa47742", "3ccdaea0-0982-4414-8024-90240f577e22", "016147fb-415c-4bfe-b132-df10d938d310", "3a3a633c-cba2-4448-a5dd-b14ef2e029a4", "06423979-4d02-4267-8ae2-4bb1236a5c8d", "911d9e44-37c1-43ea-9543-0521555fd582", "0eaa23cb-0db5-4c79-8dde-c828d511b45e", "b33961a3-3fde-484e-9257-3ef904a6244d", "cb3cbfda-5446-4f96-97f6-cc59dd8b21a8", "bc81cb19-aa69-4334-a8b6-88e43bfe0f52", "a55cbb4a-b14e-447c-ba2c-09d5eea2083e", "bf26a664-1475-4b33-b70d-15626d3400b8", "3d0e4d38-cf42-4bb9-b7e1-246d84bc6ec5" ] +} \ No newline at end of file diff --git a/azure-mgmt-redis/src/test/resources/session-records/canCRUDRedisCache.json b/azure-mgmt-redis/src/test/resources/session-records/canCRUDRedisCache.json index 806971f0514..c40810d610e 100644 --- a/azure-mgmt-redis/src/test/resources/session-records/canCRUDRedisCache.json +++ b/azure-mgmt-redis/src/test/resources/session-records/canCRUDRedisCache.json @@ -1,7 +1,7 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg87047?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg76587?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", "Content-Type" : "application/json; charset=utf-8" @@ -9,23 +9,23 @@ "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047\",\"name\":\"javacsmrg87047\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587\",\"name\":\"javacsmrg76587\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "x-ms-routing-request-id" : "WESTUS2:20180327T223952Z:dbdc8889-5343-4021-8d69-82be7dd107c6", - "date" : "Tue, 27 Mar 2018 22:39:52 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T065052Z:7df00094-1451-4df5-9606-e04c65ec9d8f", + "date" : "Wed, 30 May 2018 06:50:51 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "dbdc8889-5343-4021-8d69-82be7dd107c6", + "x-ms-request-id" : "7df00094-1451-4df5-9606-e04c65ec9d8f", "content-length" : "183", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dbdc8889-5343-4021-8d69-82be7dd107c6" + "x-ms-correlation-request-id" : "7df00094-1451-4df5-9606-e04c65ec9d8f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -33,2505 +33,4069 @@ "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":{\"primaryKey\":\"XeT/AeLPNRwSyY15LwxcIZOQdp1b4qqYSpUwJuCRhso=\",\"secondaryKey\":\"PROWNKPiuDLsevXiMnvv6CQ73gcRA+rhJGnH8tQLzNg=\"},\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":{\"primaryKey\":\"AzLTvx64x+tgSCVhhTxzuMQFsJTnPxt08Iy7pAT6564=\",\"secondaryKey\":\"zy54h0iFzUBFMtD/hp4lt4uxQWZgwKSovZWgOj3CpIc=\"},\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180327T223957Z:f5a6754e-ed0a-47ac-b5c3-7ae1504bb1ef", - "date" : "Tue, 27 Mar 2018 22:39:56 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180530T065058Z:06910b0f-39a2-4ddd-8cea-7eba01b2022c", + "date" : "Wed, 30 May 2018 06:50:57 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "b3aa2b9f-5777-499e-b962-cf7bf60fea50", + "x-ms-request-id" : "7c7e1701-2fb3-4554-8ce4-f2d4f9737dfd", "content-length" : "731", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f5a6754e-ed0a-47ac-b5c3-7ae1504bb1ef" + "x-ms-correlation-request-id" : "06910b0f-39a2-4ddd-8cea-7eba01b2022c" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T223957Z:98a855ea-a726-4ea0-be8f-b7c9bb5dc8b7", + "x-ms-routing-request-id" : "WESTUS2:20180530T065058Z:d5da3dd5-bc6a-4973-b59a-9f3b2be495c3", "x-ms-ratelimit-remaining-subscription-reads" : "14999", - "date" : "Tue, 27 Mar 2018 22:39:57 GMT", + "date" : "Wed, 30 May 2018 06:50:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "1479f0d6-a66e-437f-a38c-68a1aba9eea9", + "x-ms-request-id" : "c37f713e-20d2-4eb3-98c7-8d7ea842c48b", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "98a855ea-a726-4ea0-be8f-b7c9bb5dc8b7" + "x-ms-correlation-request-id" : "d5da3dd5-bc6a-4973-b59a-9f3b2be495c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224027Z:b341f4ff-bd5f-4427-8409-2377079f2208", + "x-ms-routing-request-id" : "WESTUS2:20180530T065128Z:ee64c0be-1f67-401e-a7e8-90878929a010", "x-ms-ratelimit-remaining-subscription-reads" : "14998", - "date" : "Tue, 27 Mar 2018 22:40:27 GMT", + "date" : "Wed, 30 May 2018 06:51:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "b77ce736-7199-40c1-9960-48f5a2b2278f", + "x-ms-request-id" : "ac7f3409-f3ee-4125-9e34-6f8e4bcdcce9", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b341f4ff-bd5f-4427-8409-2377079f2208" + "x-ms-correlation-request-id" : "ee64c0be-1f67-401e-a7e8-90878929a010" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224057Z:5bc1afd8-0868-4591-a5d4-eb6b718882fc", + "x-ms-routing-request-id" : "WESTUS2:20180530T065158Z:3fb97b03-3ce3-4f0c-9dc4-68b01f726a8b", "x-ms-ratelimit-remaining-subscription-reads" : "14997", - "date" : "Tue, 27 Mar 2018 22:40:57 GMT", + "date" : "Wed, 30 May 2018 06:51:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "7dffd356-ce0c-419f-a4f2-e18adcd3c957", + "x-ms-request-id" : "6488f7a5-ed7e-451a-9c7f-efa302246676", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5bc1afd8-0868-4591-a5d4-eb6b718882fc" + "x-ms-correlation-request-id" : "3fb97b03-3ce3-4f0c-9dc4-68b01f726a8b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224127Z:4428720e-8027-41a8-bedb-e8ae0233af20", + "x-ms-routing-request-id" : "WESTUS2:20180530T065229Z:9fd9c88b-2ba6-424b-96d7-f8a1d1364acc", "x-ms-ratelimit-remaining-subscription-reads" : "14996", - "date" : "Tue, 27 Mar 2018 22:41:27 GMT", + "date" : "Wed, 30 May 2018 06:52:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2d801f07-ebdd-4529-9a86-31a89b8ba28f", + "x-ms-request-id" : "890648a0-34da-45a7-9809-0097d72e0d4e", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4428720e-8027-41a8-bedb-e8ae0233af20" + "x-ms-correlation-request-id" : "9fd9c88b-2ba6-424b-96d7-f8a1d1364acc" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224158Z:6c10865d-547b-45d6-b9d8-a9838a69ab14", + "x-ms-routing-request-id" : "WESTUS2:20180530T065259Z:2bdbf9be-34da-46c5-9591-bc3f1b54c6b4", "x-ms-ratelimit-remaining-subscription-reads" : "14995", - "date" : "Tue, 27 Mar 2018 22:41:57 GMT", + "date" : "Wed, 30 May 2018 06:52:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "98c05896-a7dd-4a95-96ba-1a5676edac16", + "x-ms-request-id" : "b7813138-d8eb-48aa-862a-53ee7b3ca705", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c10865d-547b-45d6-b9d8-a9838a69ab14" + "x-ms-correlation-request-id" : "2bdbf9be-34da-46c5-9591-bc3f1b54c6b4" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224228Z:edf81fb3-c885-4165-8497-053fc04af39c", + "x-ms-routing-request-id" : "WESTUS2:20180530T065330Z:264f11d1-c3f4-4392-88f4-bdf7fc7bfedc", "x-ms-ratelimit-remaining-subscription-reads" : "14994", - "date" : "Tue, 27 Mar 2018 22:42:28 GMT", + "date" : "Wed, 30 May 2018 06:53:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "4787e1df-3498-44d3-8861-72a5dfb71011", + "x-ms-request-id" : "ffe4f802-50cf-4e74-a49b-b1192d4cb8b2", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "edf81fb3-c885-4165-8497-053fc04af39c" + "x-ms-correlation-request-id" : "264f11d1-c3f4-4392-88f4-bdf7fc7bfedc" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224258Z:2190c27d-ca56-4287-97d5-622eba5942c2", + "x-ms-routing-request-id" : "WESTUS2:20180530T065400Z:967e7640-f662-4420-89fb-7097d2e746c3", "x-ms-ratelimit-remaining-subscription-reads" : "14993", - "date" : "Tue, 27 Mar 2018 22:42:57 GMT", + "date" : "Wed, 30 May 2018 06:53:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "179a9dea-f2ac-4352-9719-6baac0960400", + "x-ms-request-id" : "6d936ea0-bdda-419c-8f8a-1f914540f645", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2190c27d-ca56-4287-97d5-622eba5942c2" + "x-ms-correlation-request-id" : "967e7640-f662-4420-89fb-7097d2e746c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224328Z:a5a3a4ec-7056-4f10-8639-e76285638baa", + "x-ms-routing-request-id" : "WESTUS2:20180530T065431Z:f6afdf06-f71a-4aea-b15b-4fa30a89e904", "x-ms-ratelimit-remaining-subscription-reads" : "14992", - "date" : "Tue, 27 Mar 2018 22:43:28 GMT", + "date" : "Wed, 30 May 2018 06:54:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "93cd367d-e3b3-499e-944d-5d99affa9067", + "x-ms-request-id" : "442a9e77-1ea1-4ee0-bd3e-f24c6ed8654d", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a5a3a4ec-7056-4f10-8639-e76285638baa" + "x-ms-correlation-request-id" : "f6afdf06-f71a-4aea-b15b-4fa30a89e904" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224359Z:a2c89ac2-0d87-47fa-917d-72c5f9ce7dac", + "x-ms-routing-request-id" : "WESTUS2:20180530T065501Z:073022ed-14e5-4c46-833f-432496ccba9a", "x-ms-ratelimit-remaining-subscription-reads" : "14991", - "date" : "Tue, 27 Mar 2018 22:43:58 GMT", + "date" : "Wed, 30 May 2018 06:55:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "59bde2dc-9365-4b20-afa0-f011ade25542", + "x-ms-request-id" : "8710af8a-890d-470b-9aa2-9237464ea68a", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a2c89ac2-0d87-47fa-917d-72c5f9ce7dac" + "x-ms-correlation-request-id" : "073022ed-14e5-4c46-833f-432496ccba9a" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224429Z:6d792bcd-6d98-48e3-ad89-5b4a2ca4643d", + "x-ms-routing-request-id" : "WESTUS2:20180530T065531Z:167867c5-95e6-44fb-a8ee-c3fd6d088ee9", "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "date" : "Tue, 27 Mar 2018 22:44:28 GMT", + "date" : "Wed, 30 May 2018 06:55:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "710e2f11-aa49-4370-b3b1-c0f1b3e4bdd9", + "x-ms-request-id" : "c9190e4b-9ea5-45f2-8505-933be4887584", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6d792bcd-6d98-48e3-ad89-5b4a2ca4643d" + "x-ms-correlation-request-id" : "167867c5-95e6-44fb-a8ee-c3fd6d088ee9" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224459Z:0f614a01-49f1-4270-a097-4dee3963364d", + "x-ms-routing-request-id" : "WESTUS2:20180530T065602Z:c6e2f110-da51-4e4a-a8de-9018aa1a7c93", "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "date" : "Tue, 27 Mar 2018 22:44:59 GMT", + "date" : "Wed, 30 May 2018 06:56:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "442c05a3-3d8e-453e-b17a-83cfdde084a5", + "x-ms-request-id" : "2446fb06-3c70-48fe-a61c-817c976dac04", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0f614a01-49f1-4270-a097-4dee3963364d" + "x-ms-correlation-request-id" : "c6e2f110-da51-4e4a-a8de-9018aa1a7c93" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224529Z:bab79dab-0238-49dd-b244-b373229df782", + "x-ms-routing-request-id" : "WESTUS2:20180530T065633Z:c95517f3-f26e-41fb-abd7-cbc840d56d10", "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "date" : "Tue, 27 Mar 2018 22:45:29 GMT", + "date" : "Wed, 30 May 2018 06:56:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2590884d-6e44-4984-898c-2b54b935e070", + "x-ms-request-id" : "3a5879a8-54c0-492a-9d36-4f501c9af528", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bab79dab-0238-49dd-b244-b373229df782" + "x-ms-correlation-request-id" : "c95517f3-f26e-41fb-abd7-cbc840d56d10" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224559Z:79a3aa52-3bb4-48fa-a773-2051185694f9", + "x-ms-routing-request-id" : "WESTUS2:20180530T065703Z:4b5666f4-eb09-4750-842f-45cfa6e914a1", "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "date" : "Tue, 27 Mar 2018 22:45:58 GMT", + "date" : "Wed, 30 May 2018 06:57:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0e644f14-4a2f-4b3e-9a24-1fb90d7fdf04", + "x-ms-request-id" : "7483fe27-2581-4b16-983d-4690dcecca92", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "79a3aa52-3bb4-48fa-a773-2051185694f9" + "x-ms-correlation-request-id" : "4b5666f4-eb09-4750-842f-45cfa6e914a1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224630Z:38918808-3135-4e28-a279-9c4c332688d3", + "x-ms-routing-request-id" : "WESTUS2:20180530T065733Z:25b407a7-1c34-4c41-b3ae-144d5d065bfd", "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "date" : "Tue, 27 Mar 2018 22:46:30 GMT", + "date" : "Wed, 30 May 2018 06:57:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "edec862d-9355-43ad-a638-7471a567bbf8", + "x-ms-request-id" : "43297ace-1f0e-422a-b5b4-7d1667b82b9e", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38918808-3135-4e28-a279-9c4c332688d3" + "x-ms-correlation-request-id" : "25b407a7-1c34-4c41-b3ae-144d5d065bfd" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224700Z:f1bd682d-3c7c-4267-a871-3558db30b0d1", + "x-ms-routing-request-id" : "WESTUS2:20180530T065803Z:bc7dffe5-c22f-41f3-9f9d-b0bf9acb39b3", "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "date" : "Tue, 27 Mar 2018 22:46:59 GMT", + "date" : "Wed, 30 May 2018 06:58:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "4623808b-9b19-4355-bd42-a207535b5580", + "x-ms-request-id" : "0f6c2625-7de4-41d2-9858-59770fff7a73", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f1bd682d-3c7c-4267-a871-3558db30b0d1" + "x-ms-correlation-request-id" : "bc7dffe5-c22f-41f3-9f9d-b0bf9acb39b3" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224730Z:3993208f-ae68-49a5-9ed0-f160d7640a51", + "x-ms-routing-request-id" : "WESTUS2:20180530T065834Z:4774e166-5c03-47c7-974c-8b7216fa8f14", "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "date" : "Tue, 27 Mar 2018 22:47:30 GMT", + "date" : "Wed, 30 May 2018 06:58:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "b8774c58-f12a-4d38-bcc6-224d77be3b82", + "x-ms-request-id" : "eaf38385-3cc9-41b0-9bd3-b2805a4fecec", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3993208f-ae68-49a5-9ed0-f160d7640a51" + "x-ms-correlation-request-id" : "4774e166-5c03-47c7-974c-8b7216fa8f14" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224800Z:b8646d2b-4049-434e-ad77-d72aeaa313d8", + "x-ms-routing-request-id" : "WESTUS2:20180530T065904Z:a0686800-f80d-4817-8742-28e3fabb2903", "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "date" : "Tue, 27 Mar 2018 22:48:00 GMT", + "date" : "Wed, 30 May 2018 06:59:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2379eca0-335a-4eb0-8fc8-f2cefb054998", + "x-ms-request-id" : "2494a1a6-6032-4954-8dfc-afdb9c939f86", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b8646d2b-4049-434e-ad77-d72aeaa313d8" + "x-ms-correlation-request-id" : "a0686800-f80d-4817-8742-28e3fabb2903" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224831Z:c33e969a-68b1-4022-82f4-7b3f2ca0dd92", + "x-ms-routing-request-id" : "WESTUS2:20180530T065935Z:e5fe2ee2-0d57-44d7-8cfa-b18020cd0753", "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "date" : "Tue, 27 Mar 2018 22:48:31 GMT", + "date" : "Wed, 30 May 2018 06:59:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d1ddd2cc-8cea-4d87-b193-7b6cd049e8a9", + "x-ms-request-id" : "e4f2e91a-078c-40b3-99ec-205f5de23e34", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c33e969a-68b1-4022-82f4-7b3f2ca0dd92" + "x-ms-correlation-request-id" : "e5fe2ee2-0d57-44d7-8cfa-b18020cd0753" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224901Z:1c6c85f3-373c-4b6e-92b4-52d8d1a5c0e3", + "x-ms-routing-request-id" : "WESTUS2:20180530T070005Z:008abaee-1bbf-4193-9701-1bb2f31055ba", "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "date" : "Tue, 27 Mar 2018 22:49:01 GMT", + "date" : "Wed, 30 May 2018 07:00:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "97efb756-6142-4c24-822d-e1f87d42f528", + "x-ms-request-id" : "3eb8dd9f-f660-4b5e-8b6e-d589e576028b", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1c6c85f3-373c-4b6e-92b4-52d8d1a5c0e3" + "x-ms-correlation-request-id" : "008abaee-1bbf-4193-9701-1bb2f31055ba" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T224932Z:23178fda-e64f-4b95-ab12-4f1bbe111da9", + "x-ms-routing-request-id" : "WESTUS2:20180530T070036Z:070c2220-9402-4678-8e54-c66637444939", "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "date" : "Tue, 27 Mar 2018 22:49:31 GMT", + "date" : "Wed, 30 May 2018 07:00:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "41d9106e-8932-4241-a8e4-5bdd4f80a7c1", + "x-ms-request-id" : "7f94565c-bacd-4f71-b3ad-5692b5e5921c", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23178fda-e64f-4b95-ab12-4f1bbe111da9" + "x-ms-correlation-request-id" : "070c2220-9402-4678-8e54-c66637444939" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225002Z:956cc205-702c-4a90-bfe5-75ce613d2987", + "x-ms-routing-request-id" : "WESTUS2:20180530T070106Z:37c3d0cb-4ffb-4f73-8da2-859b4042d649", "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "date" : "Tue, 27 Mar 2018 22:50:01 GMT", + "date" : "Wed, 30 May 2018 07:01:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ea42b79c-8506-465e-829d-72419fe18406", + "x-ms-request-id" : "35633fe0-a87b-47ed-ae1a-be46af161651", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "956cc205-702c-4a90-bfe5-75ce613d2987" + "x-ms-correlation-request-id" : "37c3d0cb-4ffb-4f73-8da2-859b4042d649" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225032Z:f962f0b6-563d-42a6-8666-69e9e8cd837b", + "x-ms-routing-request-id" : "WESTUS2:20180530T070136Z:4f8bc3f9-a9c7-4f0b-ae92-a8e325ce04b1", "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "date" : "Tue, 27 Mar 2018 22:50:31 GMT", + "date" : "Wed, 30 May 2018 07:01:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "539681f2-f1d9-49a2-b86e-cddc43d4ffb8", + "x-ms-request-id" : "4e807e1f-3fee-44ff-a5bb-f2b3d55befda", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f962f0b6-563d-42a6-8666-69e9e8cd837b" + "x-ms-correlation-request-id" : "4f8bc3f9-a9c7-4f0b-ae92-a8e325ce04b1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225102Z:91a81a09-8266-4231-a79f-e83ab551c4c0", + "x-ms-routing-request-id" : "WESTUS2:20180530T070206Z:6f9a8aba-fca9-4340-bedf-86a282ea5ab0", "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "date" : "Tue, 27 Mar 2018 22:51:02 GMT", + "date" : "Wed, 30 May 2018 07:02:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0709e8a0-3f9c-43ed-8214-2d567efc2e17", + "x-ms-request-id" : "55e5fa0b-1bba-4470-b30b-0d61015e4f29", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "91a81a09-8266-4231-a79f-e83ab551c4c0" + "x-ms-correlation-request-id" : "6f9a8aba-fca9-4340-bedf-86a282ea5ab0" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225133Z:f3f3c997-ba63-4454-8c2d-57ecd2e0e1a2", + "x-ms-routing-request-id" : "WESTUS2:20180530T070238Z:75bee573-b8b0-4ef9-b475-fd444c833773", "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "date" : "Tue, 27 Mar 2018 22:51:32 GMT", + "date" : "Wed, 30 May 2018 07:02:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2efff148-87fb-476b-9035-155fd71c7e84", + "x-ms-request-id" : "9c95de83-f8d2-40cb-bf39-18371b86359b", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f3f3c997-ba63-4454-8c2d-57ecd2e0e1a2" + "x-ms-correlation-request-id" : "75bee573-b8b0-4ef9-b475-fd444c833773" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225203Z:d5756fd5-39cc-4b2f-96d8-430b3de9b1f8", + "x-ms-routing-request-id" : "WESTUS2:20180530T070308Z:9daeb051-f238-4515-8119-2f75a086c99e", "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "date" : "Tue, 27 Mar 2018 22:52:02 GMT", + "date" : "Wed, 30 May 2018 07:03:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c3297123-ee8e-420d-98bf-ac5bc44be95f", + "x-ms-request-id" : "f77f55ca-70e9-4c20-8d36-5feaedc8855b", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d5756fd5-39cc-4b2f-96d8-430b3de9b1f8" + "x-ms-correlation-request-id" : "9daeb051-f238-4515-8119-2f75a086c99e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225233Z:0e9d858b-724d-44af-868e-6ffe6206a115", + "x-ms-routing-request-id" : "WESTUS2:20180530T070338Z:e6182854-3164-4d88-8d15-2e03ffd2ac3b", "x-ms-ratelimit-remaining-subscription-reads" : "14974", - "date" : "Tue, 27 Mar 2018 22:52:33 GMT", + "date" : "Wed, 30 May 2018 07:03:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "1d2bc902-7c7c-483b-b5b0-3c5488892464", + "x-ms-request-id" : "8d8874ca-df77-44f2-9139-18c2cd2151e6", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0e9d858b-724d-44af-868e-6ffe6206a115" + "x-ms-correlation-request-id" : "e6182854-3164-4d88-8d15-2e03ffd2ac3b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225303Z:7e4175f5-e556-40b2-90dc-0d09ac591eb6", + "x-ms-routing-request-id" : "WESTUS2:20180530T070409Z:34f52cbd-9355-4e07-bf5c-ccca9c69b65b", "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "date" : "Tue, 27 Mar 2018 22:53:03 GMT", + "date" : "Wed, 30 May 2018 07:04:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "fc8a07ee-c6e6-4bd5-9c59-e9e871f014fa", + "x-ms-request-id" : "9302a52f-dab8-4625-9f25-8d398abcacbc", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7e4175f5-e556-40b2-90dc-0d09ac591eb6" + "x-ms-correlation-request-id" : "34f52cbd-9355-4e07-bf5c-ccca9c69b65b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225333Z:9f9e1fb4-437a-4387-8ca2-0ad632e0f34d", + "x-ms-routing-request-id" : "WESTUS2:20180530T070440Z:2da14e1a-239a-42ff-a48e-b990f3efc6a4", "x-ms-ratelimit-remaining-subscription-reads" : "14972", - "date" : "Tue, 27 Mar 2018 22:53:32 GMT", + "date" : "Wed, 30 May 2018 07:04:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "5e6caa24-8889-4b6e-ba97-021ea75b71c9", + "x-ms-request-id" : "167ff9c4-6549-4d81-9137-41dfd68889fe", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9f9e1fb4-437a-4387-8ca2-0ad632e0f34d" + "x-ms-correlation-request-id" : "2da14e1a-239a-42ff-a48e-b990f3efc6a4" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225404Z:2abed5d7-9402-45ed-8a81-431e04f687c5", + "x-ms-routing-request-id" : "WESTUS2:20180530T070510Z:f1b684d4-c9f7-4c3c-a54e-be1cb8e9cdc1", "x-ms-ratelimit-remaining-subscription-reads" : "14971", - "date" : "Tue, 27 Mar 2018 22:54:04 GMT", + "date" : "Wed, 30 May 2018 07:05:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "116c60d0-8b93-47e2-9c1a-26437b92451a", + "x-ms-request-id" : "f538c4e2-67de-45f4-85ba-9a21eb5a713e", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2abed5d7-9402-45ed-8a81-431e04f687c5" + "x-ms-correlation-request-id" : "f1b684d4-c9f7-4c3c-a54e-be1cb8e9cdc1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225434Z:f01ddab6-c529-4295-bde3-03f55bbb11d7", + "x-ms-routing-request-id" : "WESTUS2:20180530T070540Z:b9755500-17ac-4883-82db-dbd65f351b73", "x-ms-ratelimit-remaining-subscription-reads" : "14970", - "date" : "Tue, 27 Mar 2018 22:54:33 GMT", + "date" : "Wed, 30 May 2018 07:05:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "507fd8e1-74ff-4a6f-a631-d52e6b4afac1", + "x-ms-request-id" : "e1dcc1a8-db08-48ac-adef-9b363eddec26", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f01ddab6-c529-4295-bde3-03f55bbb11d7" + "x-ms-correlation-request-id" : "b9755500-17ac-4883-82db-dbd65f351b73" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225504Z:0c7328db-c21e-4e6c-a89d-82914f75c64c", + "x-ms-routing-request-id" : "WESTUS2:20180530T070610Z:0ccee261-0af5-41ec-a878-5274a149322f", "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "date" : "Tue, 27 Mar 2018 22:55:04 GMT", + "date" : "Wed, 30 May 2018 07:06:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "227f78f0-136d-4c7b-a256-e80c93e994c0", + "x-ms-request-id" : "d7191a7d-6c94-473e-84fc-9a1b88dcdfe9", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0c7328db-c21e-4e6c-a89d-82914f75c64c" + "x-ms-correlation-request-id" : "0ccee261-0af5-41ec-a878-5274a149322f" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225535Z:aa6ce9ba-1495-4487-ac73-2349b703b6fd", + "x-ms-routing-request-id" : "WESTUS2:20180530T070641Z:1924df9e-a1c5-4369-8aa4-ea6402644b06", "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "date" : "Tue, 27 Mar 2018 22:55:34 GMT", + "date" : "Wed, 30 May 2018 07:06:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0333eec6-8c26-44af-9d8f-7cd45d1c3246", + "x-ms-request-id" : "89f845dc-2715-4f95-a9ef-c05de512d664", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aa6ce9ba-1495-4487-ac73-2349b703b6fd" + "x-ms-correlation-request-id" : "1924df9e-a1c5-4369-8aa4-ea6402644b06" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225605Z:62f440f2-8bb3-4ddf-afa2-eef8d3460b62", + "x-ms-routing-request-id" : "WESTUS2:20180530T070711Z:cd39a742-1ddd-4fdb-a15b-978577ed4df1", "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "date" : "Tue, 27 Mar 2018 22:56:05 GMT", + "date" : "Wed, 30 May 2018 07:07:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "27c36921-6251-4391-96b1-51d3dd4fa6f6", + "x-ms-request-id" : "481559af-2528-4e5a-8602-2263f08e6e44", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "62f440f2-8bb3-4ddf-afa2-eef8d3460b62" + "x-ms-correlation-request-id" : "cd39a742-1ddd-4fdb-a15b-978577ed4df1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225635Z:2ecf4866-f14b-438b-9958-f830eec4f3ef", + "x-ms-routing-request-id" : "WESTUS2:20180530T070741Z:44f5bc4d-bde5-49eb-8007-26e187dc7bc2", "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "date" : "Tue, 27 Mar 2018 22:56:35 GMT", + "date" : "Wed, 30 May 2018 07:07:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d816a294-f9ce-47c3-8db2-cc449de2f411", + "x-ms-request-id" : "50e2a44e-896a-43dc-a831-667d9b43304d", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2ecf4866-f14b-438b-9958-f830eec4f3ef" + "x-ms-correlation-request-id" : "44f5bc4d-bde5-49eb-8007-26e187dc7bc2" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225705Z:7f754b3f-4185-4c1e-b6ee-172a2e8369d3", + "x-ms-routing-request-id" : "WESTUS2:20180530T070812Z:36e3ef9e-0e4a-4069-b2d2-d8282a73dbdc", "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "date" : "Tue, 27 Mar 2018 22:57:05 GMT", + "date" : "Wed, 30 May 2018 07:08:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f35a0723-6b20-4eac-9453-ec50b6671f77", + "x-ms-request-id" : "1f95b97f-09e9-4a5b-bc04-3d57a874612f", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7f754b3f-4185-4c1e-b6ee-172a2e8369d3" + "x-ms-correlation-request-id" : "36e3ef9e-0e4a-4069-b2d2-d8282a73dbdc" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225736Z:6fe563c4-4705-4221-b0f1-ebf210895e74", + "x-ms-routing-request-id" : "WESTUS2:20180530T070843Z:598cf80b-28c1-4d7c-8551-71093286e774", "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "date" : "Tue, 27 Mar 2018 22:57:36 GMT", + "date" : "Wed, 30 May 2018 07:08:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "6c703d36-8668-400b-9b42-9ae348211e7a", + "x-ms-request-id" : "bad6f6d2-abf6-47d1-add8-c498fbf9f3e9", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6fe563c4-4705-4221-b0f1-ebf210895e74" + "x-ms-correlation-request-id" : "598cf80b-28c1-4d7c-8551-71093286e774" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225806Z:64a218d6-2536-46f5-bcc7-a3aa7c5dabfc", + "x-ms-routing-request-id" : "WESTUS2:20180530T070913Z:57c41bd5-3f3c-4c8b-a9a1-18d3a9d2c547", "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "date" : "Tue, 27 Mar 2018 22:58:05 GMT", + "date" : "Wed, 30 May 2018 07:09:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0ec93321-3d8d-4573-acb3-4071781dca39", + "x-ms-request-id" : "6c3afa32-90c2-44f3-aac9-f33d040fe819", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "64a218d6-2536-46f5-bcc7-a3aa7c5dabfc" + "x-ms-correlation-request-id" : "57c41bd5-3f3c-4c8b-a9a1-18d3a9d2c547" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225837Z:8c961c3a-e7e9-437e-9b32-c4a1297592bf", + "x-ms-routing-request-id" : "WESTUS2:20180530T070943Z:80b3da7b-582a-4309-aac0-704e7db4150e", "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "date" : "Tue, 27 Mar 2018 22:58:36 GMT", + "date" : "Wed, 30 May 2018 07:09:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "4cd74b86-5901-433b-8bb9-bc1090800564", + "x-ms-request-id" : "87e9a046-f495-4e4d-8aae-807653ba2451", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8c961c3a-e7e9-437e-9b32-c4a1297592bf" + "x-ms-correlation-request-id" : "80b3da7b-582a-4309-aac0-704e7db4150e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225907Z:bc07ad37-fcb1-42b3-9327-c32476fba84a", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "date" : "Tue, 27 Mar 2018 22:59:07 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T071013Z:f837ed77-53b4-456d-a98f-77372d01cb93", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "date" : "Wed, 30 May 2018 07:10:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "01e7fc97-8ac3-4623-98d8-67ab9bf8ecdf", + "x-ms-request-id" : "907def92-5f04-4798-9311-965a95c74fc0", "content-length" : "612", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bc07ad37-fcb1-42b3-9327-c32476fba84a" + "x-ms-correlation-request-id" : "f837ed77-53b4-456d-a98f-77372d01cb93" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225937Z:fb9cadbe-c681-4c9e-bc13-cf53d976e02f", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "date" : "Tue, 27 Mar 2018 22:59:37 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T071044Z:debd72e1-6a6f-44af-9253-62436771bd96", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "date" : "Wed, 30 May 2018 07:10:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "5bb84335-79a2-45ff-bf7a-1339b7c7239e", - "content-length" : "613", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d242be7f-1f81-43ba-bd15-b453086d6459", + "content-length" : "612", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb9cadbe-c681-4c9e-bc13-cf53d976e02f" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg87047Second?api-version=2017-05-10", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second\",\"name\":\"javacsmrg87047Second\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "x-ms-routing-request-id" : "WESTUS2:20180327T225939Z:5e0afc5a-9cba-4c31-a2c8-795e72b310d5", - "date" : "Tue, 27 Mar 2018 22:59:38 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "x-content-type-options" : "nosniff", - "expires" : "-1", - "x-ms-request-id" : "5e0afc5a-9cba-4c31-a2c8-795e72b310d5", - "content-length" : "196", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5e0afc5a-9cba-4c31-a2c8-795e72b310d5" + "x-ms-correlation-request-id" : "debd72e1-6a6f-44af-9253-62436771bd96" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":{\"primaryKey\":\"yGCojBeGSPhf3LVZg4+vQAHKz2yrVKAtLHQlwTLQXKs=\",\"secondaryKey\":\"YZQVU3K3XgQ9RN/BE5AnwvCi81CljDzjLTlKwDWmtS0=\"},\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180327T225941Z:6d6bf12b-25dd-466f-a75b-13b35085c268", - "date" : "Tue, 27 Mar 2018 22:59:40 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T071114Z:d2a63af5-c4fa-4aa3-94ab-4e2ec161f190", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "date" : "Wed, 30 May 2018 07:11:14 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "55e608d7-eb39-4e4f-9f00-b1b79d33307b", - "content-length" : "780", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "409ec539-d43a-42bb-bfd2-9577663a8a19", + "content-length" : "612", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6d6bf12b-25dd-466f-a75b-13b35085c268" + "x-ms-correlation-request-id" : "d2a63af5-c4fa-4aa3-94ab-4e2ec161f190" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T225941Z:7e05fd3d-c64a-4d71-8400-bb5775142af3", + "x-ms-routing-request-id" : "WESTUS2:20180530T071145Z:ab210570-b7bc-47a3-be10-ea36aedf79df", "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "date" : "Tue, 27 Mar 2018 22:59:40 GMT", + "date" : "Wed, 30 May 2018 07:11:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d16d7962-8b52-4ebe-83bf-3d90d5197d91", - "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "30123e41-fd43-4e17-9a09-f81882284d91", + "content-length" : "612", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7e05fd3d-c64a-4d71-8400-bb5775142af3" + "x-ms-correlation-request-id" : "ab210570-b7bc-47a3-be10-ea36aedf79df" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230011Z:a40c78df-f972-4e5a-8925-c7cda0c85766", + "x-ms-routing-request-id" : "WESTUS2:20180530T071215Z:b86c94f7-1ab3-447a-9765-1525b4b66903", "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "date" : "Tue, 27 Mar 2018 23:00:10 GMT", + "date" : "Wed, 30 May 2018 07:12:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "95bb7be1-8001-4ac2-99f0-291608ca6552", - "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d6e32cd6-146b-4290-a819-dde012ef4b03", + "content-length" : "612", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a40c78df-f972-4e5a-8925-c7cda0c85766" + "x-ms-correlation-request-id" : "b86c94f7-1ab3-447a-9765-1525b4b66903" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230041Z:a1ced18e-94fa-42f9-b1f5-fb5155ae7ae8", + "x-ms-routing-request-id" : "WESTUS2:20180530T071245Z:593d5849-5e7d-4529-9e78-235a08d7fb9e", "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "date" : "Tue, 27 Mar 2018 23:00:40 GMT", + "date" : "Wed, 30 May 2018 07:12:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "09c980a8-bde3-474a-8236-740f1eed46c7", - "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "b986e2b9-ad1a-4737-80b3-c62fa92dc5a5", + "content-length" : "612", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a1ced18e-94fa-42f9-b1f5-fb5155ae7ae8" + "x-ms-correlation-request-id" : "593d5849-5e7d-4529-9e78-235a08d7fb9e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230112Z:a56f80ba-908b-4ad0-b57c-35ea361706cf", + "x-ms-routing-request-id" : "WESTUS2:20180530T071316Z:ed3b35a2-3dae-46ad-a831-d8fb53955b13", "x-ms-ratelimit-remaining-subscription-reads" : "14955", - "date" : "Tue, 27 Mar 2018 23:01:11 GMT", + "date" : "Wed, 30 May 2018 07:13:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f6005f5d-0eaa-4fa2-b5ee-5a1847fad897", - "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "bbcdd741-792b-4ca2-b304-0f9c66dee1d9", + "content-length" : "612", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a56f80ba-908b-4ad0-b57c-35ea361706cf" + "x-ms-correlation-request-id" : "ed3b35a2-3dae-46ad-a831-d8fb53955b13" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230142Z:7f1873f6-849d-47de-8bed-1745fe393b1e", + "x-ms-routing-request-id" : "WESTUS2:20180530T071346Z:2740c2e8-9136-43d9-8e83-e849732dcecd", "x-ms-ratelimit-remaining-subscription-reads" : "14954", - "date" : "Tue, 27 Mar 2018 23:01:41 GMT", + "date" : "Wed, 30 May 2018 07:13:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "42da5ca1-d614-472a-97d3-4bdb6e3887c7", - "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "bf67e6bf-0278-4ac5-96cd-ce0ed8648ee6", + "content-length" : "612", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7f1873f6-849d-47de-8bed-1745fe393b1e" + "x-ms-correlation-request-id" : "2740c2e8-9136-43d9-8e83-e849732dcecd" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230213Z:c162c530-71ca-4196-8277-b53d10431bfa", + "x-ms-routing-request-id" : "WESTUS2:20180530T071416Z:67bf4e67-0231-47ea-9e0d-9da33a3ea9d2", "x-ms-ratelimit-remaining-subscription-reads" : "14953", - "date" : "Tue, 27 Mar 2018 23:02:12 GMT", + "date" : "Wed, 30 May 2018 07:14:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "edc8c1d7-212a-4fb2-bb8e-efaa992686fc", - "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "9fcefee8-0457-4a9a-b57c-c5d462004a87", + "content-length" : "612", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c162c530-71ca-4196-8277-b53d10431bfa" + "x-ms-correlation-request-id" : "67bf4e67-0231-47ea-9e0d-9da33a3ea9d2" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230243Z:d1a99bb2-8ccc-45fc-a86e-1cb3441d8cb7", + "x-ms-routing-request-id" : "WESTUS2:20180530T071447Z:8b12b97c-d7a2-4d5b-92a4-f7a61975b5b4", "x-ms-ratelimit-remaining-subscription-reads" : "14952", - "date" : "Tue, 27 Mar 2018 23:02:42 GMT", + "date" : "Wed, 30 May 2018 07:14:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "94dadab6-64ab-4ca5-8454-8421952805cb", - "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "c2fc7683-37ff-4da8-84d3-7f24eb099237", + "content-length" : "612", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1a99bb2-8ccc-45fc-a86e-1cb3441d8cb7" + "x-ms-correlation-request-id" : "8b12b97c-d7a2-4d5b-92a4-f7a61975b5b4" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230313Z:b960cf2c-eaca-4fd7-bfed-7b9f6f362ae8", + "x-ms-routing-request-id" : "WESTUS2:20180530T071517Z:f9ccb2ed-f0a8-453d-926b-96584083d279", "x-ms-ratelimit-remaining-subscription-reads" : "14951", - "date" : "Tue, 27 Mar 2018 23:03:12 GMT", + "date" : "Wed, 30 May 2018 07:15:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "4bbd7cdf-ef21-45b3-a11e-22cf4898e3d3", - "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "bf6458ee-fb13-4f22-9e09-5795cc3b7edb", + "content-length" : "613", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f9ccb2ed-f0a8-453d-926b-96584083d279" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg76587Second?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second\",\"name\":\"javacsmrg76587Second\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-routing-request-id" : "WESTUS2:20180530T071519Z:f4d37bba-45ff-44ba-ab6a-d664c451a392", + "date" : "Wed, 30 May 2018 07:15:19 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f4d37bba-45ff-44ba-ab6a-d664c451a392", + "content-length" : "196", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f4d37bba-45ff-44ba-ab6a-d664c451a392" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":{\"primaryKey\":\"WUhe8PbKtZg6ZAJLJHdmU18i9mK7Xn3kVktaWcyr7tE=\",\"secondaryKey\":\"PHeXKRS3Ffl6Nt72JZJzCbZfGvQiSlVn2AV6D/McwaQ=\"},\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180530T071521Z:8826dd3f-4a11-4936-8eaf-fc7698132e06", + "date" : "Wed, 30 May 2018 07:15:21 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "63506494-7971-43af-9292-de6b6f8209cf", + "content-length" : "780", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b960cf2c-eaca-4fd7-bfed-7b9f6f362ae8" + "x-ms-correlation-request-id" : "8826dd3f-4a11-4936-8eaf-fc7698132e06" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230343Z:35eed236-a78a-41cb-9125-019aa017e314", + "x-ms-routing-request-id" : "WESTUS2:20180530T071521Z:f94bd493-aa3c-4600-bc03-9efe7433be7b", "x-ms-ratelimit-remaining-subscription-reads" : "14950", - "date" : "Tue, 27 Mar 2018 23:03:43 GMT", + "date" : "Wed, 30 May 2018 07:15:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d9ea7e88-81d4-48ac-b4d1-16333362216e", + "x-ms-request-id" : "8e099e1a-2d3e-4f47-992a-3bc825fdfc52", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "35eed236-a78a-41cb-9125-019aa017e314" + "x-ms-correlation-request-id" : "f94bd493-aa3c-4600-bc03-9efe7433be7b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230414Z:dad2177f-506f-429d-886f-5a85c949522f", + "x-ms-routing-request-id" : "WESTUS2:20180530T071552Z:a5b78def-15c2-4e9b-9130-0f0c056e201f", "x-ms-ratelimit-remaining-subscription-reads" : "14949", - "date" : "Tue, 27 Mar 2018 23:04:13 GMT", + "date" : "Wed, 30 May 2018 07:15:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "47e29a7e-4b92-47ec-ae12-16c2d41c3c3a", + "x-ms-request-id" : "2ee7a4a6-8504-48ad-adbb-c9d8cfbd6169", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dad2177f-506f-429d-886f-5a85c949522f" + "x-ms-correlation-request-id" : "a5b78def-15c2-4e9b-9130-0f0c056e201f" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230444Z:1cc33122-ea17-419a-8559-4021013a8661", + "x-ms-routing-request-id" : "WESTUS2:20180530T071622Z:693ff422-63de-4381-8cf5-765c29a1e2c8", "x-ms-ratelimit-remaining-subscription-reads" : "14948", - "date" : "Tue, 27 Mar 2018 23:04:43 GMT", + "date" : "Wed, 30 May 2018 07:16:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "b66c3889-72ad-482d-abf6-d4da7eb33dca", + "x-ms-request-id" : "c48a952d-b903-4c6b-8fcd-c65b9db0a1dd", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1cc33122-ea17-419a-8559-4021013a8661" + "x-ms-correlation-request-id" : "693ff422-63de-4381-8cf5-765c29a1e2c8" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230514Z:15bf8548-cbae-43e8-9a0c-fe8c16c83fdf", + "x-ms-routing-request-id" : "WESTUS2:20180530T071652Z:36009524-fb56-4f53-a7db-41ff5c026444", "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "date" : "Tue, 27 Mar 2018 23:05:14 GMT", + "date" : "Wed, 30 May 2018 07:16:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "93c41b5f-60d2-4669-8ec6-9c837e4e8e02", + "x-ms-request-id" : "23b315f1-50b8-4245-973c-0336a835aa91", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "15bf8548-cbae-43e8-9a0c-fe8c16c83fdf" + "x-ms-correlation-request-id" : "36009524-fb56-4f53-a7db-41ff5c026444" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230544Z:6e5c928b-e1fe-4a30-8815-f1da7256c63b", + "x-ms-routing-request-id" : "WESTUS2:20180530T071722Z:6bfe551c-e1ce-47c5-9fa7-6ffb5d1a2e67", "x-ms-ratelimit-remaining-subscription-reads" : "14946", - "date" : "Tue, 27 Mar 2018 23:05:43 GMT", + "date" : "Wed, 30 May 2018 07:17:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a7fe2094-6ff5-4f61-b541-9b988e894ae3", + "x-ms-request-id" : "c3e05688-38e0-42d6-9d72-412f95c8d7a0", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6e5c928b-e1fe-4a30-8815-f1da7256c63b" + "x-ms-correlation-request-id" : "6bfe551c-e1ce-47c5-9fa7-6ffb5d1a2e67" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230614Z:bba94343-3bd7-485b-8270-38d304388d8a", + "x-ms-routing-request-id" : "WESTUS2:20180530T071752Z:3f28eba2-ab77-4b1a-bc3c-163525695450", "x-ms-ratelimit-remaining-subscription-reads" : "14945", - "date" : "Tue, 27 Mar 2018 23:06:14 GMT", + "date" : "Wed, 30 May 2018 07:17:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "39292511-6ee3-4039-836d-364cdf677c65", + "x-ms-request-id" : "5bc32587-7982-46c0-afbe-94bce6d567fd", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bba94343-3bd7-485b-8270-38d304388d8a" + "x-ms-correlation-request-id" : "3f28eba2-ab77-4b1a-bc3c-163525695450" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230645Z:89e8d0dd-6b68-4e76-ba83-bcf715d95466", + "x-ms-routing-request-id" : "WESTUS2:20180530T071822Z:6adeb020-ce48-4781-b0d8-cb01b3fda4d4", "x-ms-ratelimit-remaining-subscription-reads" : "14944", - "date" : "Tue, 27 Mar 2018 23:06:44 GMT", + "date" : "Wed, 30 May 2018 07:18:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "22fc6552-e4c1-4603-bc1c-ce77b5cebc24", + "x-ms-request-id" : "7d827b23-3a83-4d53-ae4c-2a17a2bd6f81", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "89e8d0dd-6b68-4e76-ba83-bcf715d95466" + "x-ms-correlation-request-id" : "6adeb020-ce48-4781-b0d8-cb01b3fda4d4" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230715Z:4fcf0de4-1053-45b0-98ce-ab1d255f9ee7", + "x-ms-routing-request-id" : "WESTUS2:20180530T071853Z:64d37122-bceb-49e0-a59f-63737a50ed67", "x-ms-ratelimit-remaining-subscription-reads" : "14943", - "date" : "Tue, 27 Mar 2018 23:07:14 GMT", + "date" : "Wed, 30 May 2018 07:18:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f8470e43-c18c-41a4-8309-3bc9ba5bf9da", + "x-ms-request-id" : "3eb34829-e9c1-4961-8732-458bc34f14b9", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4fcf0de4-1053-45b0-98ce-ab1d255f9ee7" + "x-ms-correlation-request-id" : "64d37122-bceb-49e0-a59f-63737a50ed67" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230745Z:53a18dfc-3193-429a-a317-2c6cee8a1066", + "x-ms-routing-request-id" : "WESTUS2:20180530T071923Z:4a98fedd-ba8f-4971-a9fc-f3c139ef50db", "x-ms-ratelimit-remaining-subscription-reads" : "14942", - "date" : "Tue, 27 Mar 2018 23:07:44 GMT", + "date" : "Wed, 30 May 2018 07:19:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "63e1eb33-d3ca-4a95-94eb-87f74db6f827", + "x-ms-request-id" : "3facb94c-2a72-4602-9c71-f07f1a0556f7", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "53a18dfc-3193-429a-a317-2c6cee8a1066" + "x-ms-correlation-request-id" : "4a98fedd-ba8f-4971-a9fc-f3c139ef50db" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230815Z:c21c05bb-86c3-4f79-83f0-b3dd91053110", + "x-ms-routing-request-id" : "WESTUS2:20180530T071953Z:a49a2e82-417c-469f-bcbe-8f3cbe89f470", "x-ms-ratelimit-remaining-subscription-reads" : "14941", - "date" : "Tue, 27 Mar 2018 23:08:15 GMT", + "date" : "Wed, 30 May 2018 07:19:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "824f09b9-65ef-4c16-b591-bb27c862dcae", + "x-ms-request-id" : "059250cc-9423-4fe2-b326-7a3f306d21f8", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c21c05bb-86c3-4f79-83f0-b3dd91053110" + "x-ms-correlation-request-id" : "a49a2e82-417c-469f-bcbe-8f3cbe89f470" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230845Z:8d6b4c8d-f6f8-431a-896f-ca36e5c4dd5e", + "x-ms-routing-request-id" : "WESTUS2:20180530T072023Z:b17a7a25-80b1-49d3-8cf9-0f4d835cbfc9", "x-ms-ratelimit-remaining-subscription-reads" : "14940", - "date" : "Tue, 27 Mar 2018 23:08:45 GMT", + "date" : "Wed, 30 May 2018 07:20:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "81d5bbca-77f7-42cc-831a-a9d11edfaaec", + "x-ms-request-id" : "1a4792f2-3fcf-4e79-abc6-e65bd6c31f24", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d6b4c8d-f6f8-431a-896f-ca36e5c4dd5e" + "x-ms-correlation-request-id" : "b17a7a25-80b1-49d3-8cf9-0f4d835cbfc9" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230916Z:4538a0c9-2b82-49c0-a2fe-5db949b07690", + "x-ms-routing-request-id" : "WESTUS2:20180530T072053Z:2bb07569-d2b4-436f-963f-75bd191f55bc", "x-ms-ratelimit-remaining-subscription-reads" : "14939", - "date" : "Tue, 27 Mar 2018 23:09:15 GMT", + "date" : "Wed, 30 May 2018 07:20:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2bac5509-0407-4b4c-bc10-03281464eae6", + "x-ms-request-id" : "811c8a6a-10d0-4bc7-af47-e9cdf0afb594", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4538a0c9-2b82-49c0-a2fe-5db949b07690" + "x-ms-correlation-request-id" : "2bb07569-d2b4-436f-963f-75bd191f55bc" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T230946Z:c491ec04-68e0-4ea5-bd99-13a0ec385920", + "x-ms-routing-request-id" : "WESTUS2:20180530T072123Z:01d53a0f-cc49-44a7-b296-9f8f8f2d27ce", "x-ms-ratelimit-remaining-subscription-reads" : "14938", - "date" : "Tue, 27 Mar 2018 23:09:45 GMT", + "date" : "Wed, 30 May 2018 07:21:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "511f44df-054b-4f06-9ad6-7658fe74d31f", + "x-ms-request-id" : "654224a7-2836-4760-bf04-a40a59a46ec5", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c491ec04-68e0-4ea5-bd99-13a0ec385920" + "x-ms-correlation-request-id" : "01d53a0f-cc49-44a7-b296-9f8f8f2d27ce" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231016Z:99f5dafb-c8d2-4359-ba4d-0e583a72a14e", + "x-ms-routing-request-id" : "WESTUS2:20180530T072154Z:6edb56b3-62f3-459c-963d-907053735520", "x-ms-ratelimit-remaining-subscription-reads" : "14937", - "date" : "Tue, 27 Mar 2018 23:10:16 GMT", + "date" : "Wed, 30 May 2018 07:21:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "aa0d2024-1f83-412c-80e1-a688cf77a353", + "x-ms-request-id" : "8ad0036b-cde8-4b84-9382-70cfa5c0151f", "content-length" : "661", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "99f5dafb-c8d2-4359-ba4d-0e583a72a14e" + "x-ms-correlation-request-id" : "6edb56b3-62f3-459c-963d-907053735520" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Second?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231046Z:9ebc897d-d669-429b-aceb-636436204ccb", + "x-ms-routing-request-id" : "WESTUS2:20180530T072224Z:58970cc1-5b78-47ad-a9e2-0d189e01a5a2", "x-ms-ratelimit-remaining-subscription-reads" : "14936", - "date" : "Tue, 27 Mar 2018 23:10:46 GMT", + "date" : "Wed, 30 May 2018 07:22:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e43369d0-cc3d-4c1b-a602-35b157dd8ebf", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "2d45c43c-4d87-43c4-9bab-5e5d633e3e80", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9ebc897d-d669-429b-aceb-636436204ccb" + "x-ms-correlation-request-id" : "58970cc1-5b78-47ad-a9e2-0d189e01a5a2" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second/patchSchedules/default?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Sunday\",\"startHourUtc\":10,\"maintenanceWindow\":\"PT302M\"}]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231047Z:b5397a14-7847-47b3-8adc-c5ac8e2c7ec5", - "date" : "Tue, 27 Mar 2018 23:10:47 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072254Z:577e20d5-5d55-499f-8756-bafe9f37f1f6", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "date" : "Wed, 30 May 2018 07:22:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "66095dde-366d-47b5-a39f-bf390f472c2f", - "content-length" : "385", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "874e8f73-988e-4c99-914e-328d6efe9c5a", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5397a14-7847-47b3-8adc-c5ac8e2c7ec5" + "x-ms-correlation-request-id" : "577e20d5-5d55-499f-8756-bafe9f37f1f6" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":{\"primaryKey\":\"DVnVJpRyzd4VDcUO2Gm3Ywu7T1VUcUrLw83iCrktI+g=\",\"secondaryKey\":\"MlZYHm0D7eKq09DYLZkiqLOedIfsmkIPEzGmia62+e4=\"},\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180327T231048Z:704e13c6-ffcf-4843-803c-34bbf7ca3d09", - "date" : "Tue, 27 Mar 2018 23:10:48 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T072324Z:c1a2d3ae-1b86-4cc8-91fd-07dfd61264d1", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "date" : "Wed, 30 May 2018 07:23:24 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f0cf8807-0786-44ef-8f12-4565f8cc9e43", - "content-length" : "761", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "a1a66546-40f8-44a5-990c-0ee213598d5a", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "704e13c6-ffcf-4843-803c-34bbf7ca3d09" + "x-ms-correlation-request-id" : "c1a2d3ae-1b86-4cc8-91fd-07dfd61264d1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231049Z:8155ad88-5394-45e2-b2e0-5916a2eaf467", - "x-ms-ratelimit-remaining-subscription-reads" : "14935", - "date" : "Tue, 27 Mar 2018 23:10:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072354Z:42d6f60f-3c40-4c91-b0dc-8e1e3e9a73c1", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "date" : "Wed, 30 May 2018 07:23:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e948e325-a509-435d-9727-7f0574c3c5ad", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "24deff84-716a-4ff2-b94a-a0d3b45b7c02", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8155ad88-5394-45e2-b2e0-5916a2eaf467" + "x-ms-correlation-request-id" : "42d6f60f-3c40-4c91-b0dc-8e1e3e9a73c1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231119Z:5ec22988-1d14-4783-af22-b363fdf08659", - "x-ms-ratelimit-remaining-subscription-reads" : "14934", - "date" : "Tue, 27 Mar 2018 23:11:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072424Z:eeae3212-3689-47e3-9eb5-aae33d2e87f2", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "date" : "Wed, 30 May 2018 07:24:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "71a67ca6-b460-416e-a69e-37698a2c1ef7", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "eb205585-35e4-43b6-82fb-1902ea6af24a", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5ec22988-1d14-4783-af22-b363fdf08659" + "x-ms-correlation-request-id" : "eeae3212-3689-47e3-9eb5-aae33d2e87f2" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231149Z:e27a2c1d-6b05-44f8-8434-d949ee3b64ce", - "x-ms-ratelimit-remaining-subscription-reads" : "14933", - "date" : "Tue, 27 Mar 2018 23:11:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072454Z:3873d00a-0983-45db-8a19-c3c09ead62f7", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "date" : "Wed, 30 May 2018 07:24:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ff68df5a-fffe-4e7a-b9d1-1e5314397b95", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "8cd3a9a4-e7f9-4dd9-9305-b4afefe7b7d2", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e27a2c1d-6b05-44f8-8434-d949ee3b64ce" + "x-ms-correlation-request-id" : "3873d00a-0983-45db-8a19-c3c09ead62f7" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231219Z:1d45a895-820a-4adb-bbd8-4fc7d6a6c8a7", - "x-ms-ratelimit-remaining-subscription-reads" : "14932", - "date" : "Tue, 27 Mar 2018 23:12:18 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072524Z:c45839ba-fa15-4a0f-a539-d0bf439bec2e", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "date" : "Wed, 30 May 2018 07:25:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "462b22c3-7d49-4338-afb4-865adc82c0a7", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "9fed0e03-1ed4-44f0-bb93-06d0354faecc", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1d45a895-820a-4adb-bbd8-4fc7d6a6c8a7" + "x-ms-correlation-request-id" : "c45839ba-fa15-4a0f-a539-d0bf439bec2e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231249Z:fdd2b138-08fe-41af-9d2c-373aec00671b", - "x-ms-ratelimit-remaining-subscription-reads" : "14931", - "date" : "Tue, 27 Mar 2018 23:12:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072555Z:de023b87-eb26-436d-a679-d9eccd00fe5f", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "date" : "Wed, 30 May 2018 07:25:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "41ad3d3f-a88e-46cf-ae0c-b1059754e54b", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "bdb6b217-e1f2-4521-8cb5-bfacac877cb7", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fdd2b138-08fe-41af-9d2c-373aec00671b" + "x-ms-correlation-request-id" : "de023b87-eb26-436d-a679-d9eccd00fe5f" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231320Z:730bdf57-4bbc-4445-9e4e-b4efd345274b", - "x-ms-ratelimit-remaining-subscription-reads" : "14930", - "date" : "Tue, 27 Mar 2018 23:13:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072625Z:3a4604b3-adf5-438f-9c8a-fffa1a5f63c2", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "date" : "Wed, 30 May 2018 07:26:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e4c0bcfe-4403-4fb2-95ed-490116508949", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "e4633764-c775-4b4f-9e3b-8db5a089b9cb", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "730bdf57-4bbc-4445-9e4e-b4efd345274b" + "x-ms-correlation-request-id" : "3a4604b3-adf5-438f-9c8a-fffa1a5f63c2" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231350Z:95461c7d-f168-423b-b937-eaff40503384", - "x-ms-ratelimit-remaining-subscription-reads" : "14929", - "date" : "Tue, 27 Mar 2018 23:13:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072655Z:c1c06448-4923-4463-997a-2f702cd75b88", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "date" : "Wed, 30 May 2018 07:26:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "6a82e263-efb2-4806-bd3d-236e5b743e48", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "2effd3a7-457d-4976-b5c0-a7af370cf2bf", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "95461c7d-f168-423b-b937-eaff40503384" + "x-ms-correlation-request-id" : "c1c06448-4923-4463-997a-2f702cd75b88" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231420Z:c8eab45e-a965-4b3a-a7f6-96c25ed45db0", - "x-ms-ratelimit-remaining-subscription-reads" : "14928", - "date" : "Tue, 27 Mar 2018 23:14:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072725Z:12247dc8-40c4-41e4-ae4b-5e34e38a1c68", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "date" : "Wed, 30 May 2018 07:27:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e72a0c34-4f13-47bc-8644-b2e39767b3b8", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "70747d5f-0799-44b0-8174-828caec9dae7", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c8eab45e-a965-4b3a-a7f6-96c25ed45db0" + "x-ms-correlation-request-id" : "12247dc8-40c4-41e4-ae4b-5e34e38a1c68" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231450Z:e027c7b9-ab17-4555-bace-2201435e30e7", - "x-ms-ratelimit-remaining-subscription-reads" : "14927", - "date" : "Tue, 27 Mar 2018 23:14:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072755Z:c7580714-ea08-499d-8b4f-1a61b4a32a25", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "date" : "Wed, 30 May 2018 07:27:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e7a8756c-4987-4d9b-a4fb-5347b26f3a69", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "8849c168-7394-4e61-8e83-fa02b1cbb4fd", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e027c7b9-ab17-4555-bace-2201435e30e7" + "x-ms-correlation-request-id" : "c7580714-ea08-499d-8b4f-1a61b4a32a25" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231520Z:333123fd-86ec-4079-ae9b-f294eb252099", - "x-ms-ratelimit-remaining-subscription-reads" : "14926", - "date" : "Tue, 27 Mar 2018 23:15:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072825Z:7db86422-38ad-488d-bb1f-e131aad1d39c", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "date" : "Wed, 30 May 2018 07:28:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "4e35d1b5-a3ef-46e7-8df4-bcd4f6b1f556", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "cc1216b3-2c2a-439b-be54-6a6b058a37cc", + "content-length" : "661", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "333123fd-86ec-4079-ae9b-f294eb252099" + "x-ms-correlation-request-id" : "7db86422-38ad-488d-bb1f-e131aad1d39c" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231550Z:cb5e4d58-0acb-47d6-993f-b16e00ff2dcb", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "date" : "Tue, 27 Mar 2018 23:15:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072855Z:b6a3b44c-cf07-467f-8834-74693ef893d3", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "date" : "Wed, 30 May 2018 07:28:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c8f3776c-6d6b-4cc3-aea1-43d6ae900822", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "6796f758-4508-4b18-92be-534a3e5197e4", + "content-length" : "662", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cb5e4d58-0acb-47d6-993f-b16e00ff2dcb" + "x-ms-correlation-request-id" : "b6a3b44c-cf07-467f-8834-74693ef893d3" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second/patchSchedules/default?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Sunday\",\"startHourUtc\":10,\"maintenanceWindow\":\"PT302M\"}]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231620Z:de32f783-69d1-42fb-92f0-0c341a6b3754", - "x-ms-ratelimit-remaining-subscription-reads" : "14924", - "date" : "Tue, 27 Mar 2018 23:16:20 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072856Z:e60a2a04-e4be-4685-b13f-d719bfab3508", + "date" : "Wed, 30 May 2018 07:28:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "8748bd96-c67b-4c08-b469-dd7c1348dd9d", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "e586552a-d11f-42ee-b3b9-580eac8eb2d1", + "content-length" : "385", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "de32f783-69d1-42fb-92f0-0c341a6b3754" + "x-ms-correlation-request-id" : "e60a2a04-e4be-4685-b13f-d719bfab3508" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231650Z:ed278275-323b-4baa-b1d5-93e53135ba66", - "x-ms-ratelimit-remaining-subscription-reads" : "14923", - "date" : "Tue, 27 Mar 2018 23:16:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072856Z:3779b21e-c752-449e-9428-5ec23e6253d2", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "date" : "Wed, 30 May 2018 07:28:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e0735f76-3745-4dbe-b8d6-8f28d01a94aa", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "e2837a48-6cf4-4c69-adcc-d3ede6d673b2", + "content-length" : "662", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ed278275-323b-4baa-b1d5-93e53135ba66" + "x-ms-correlation-request-id" : "3779b21e-c752-449e-9428-5ec23e6253d2" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second/firewallRules?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"value\":[]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231720Z:dbe1ec09-df86-4091-812e-8afbcd46d34d", - "x-ms-ratelimit-remaining-subscription-reads" : "14922", - "date" : "Tue, 27 Mar 2018 23:17:20 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072856Z:1edc6b28-a62b-482a-b8aa-fe86fbc0bb44", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "date" : "Wed, 30 May 2018 07:28:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2c47a56e-14df-4541-a29e-8b4aca8acd7c", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "7f6d9b89-aaac-4aef-87cf-c227c7483432", + "content-length" : "12", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dbe1ec09-df86-4091-812e-8afbcd46d34d" + "x-ms-correlation-request-id" : "1edc6b28-a62b-482a-b8aa-fe86fbc0bb44" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second/patchSchedules?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Sunday\",\"startHourUtc\":10,\"maintenanceWindow\":\"PT302M\"}]}}]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231751Z:a9dcfbdb-e32b-4dae-b611-8a3dd13110b5", - "x-ms-ratelimit-remaining-subscription-reads" : "14921", - "date" : "Tue, 27 Mar 2018 23:17:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T072856Z:5cb875ec-99f9-4317-819c-392e24d4d286", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "date" : "Wed, 30 May 2018 07:28:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "13819642-1491-427b-a8dc-fc02e1d3eeab", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "1661f6eb-5b9a-4144-96b3-28b665181a27", + "content-length" : "397", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a9dcfbdb-e32b-4dae-b611-8a3dd13110b5" + "x-ms-correlation-request-id" : "5cb875ec-99f9-4317-819c-392e24d4d286" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231821Z:db20d68a-ed89-4ad8-a26b-3dfdb8146a37", - "x-ms-ratelimit-remaining-subscription-reads" : "14920", - "date" : "Tue, 27 Mar 2018 23:18:20 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":{\"primaryKey\":\"7Wn54nf/xvQPt8Fv7pd2BnE13G3YpiiW1a9V9J6KVEQ=\",\"secondaryKey\":\"U/Gsp8TTjs5bXGoHq6bZ8ha6bDkUJwSdqdCXS+OTOvE=\"},\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180530T072859Z:688fbcab-0b48-4840-8ba4-8074945a3dca", + "date" : "Wed, 30 May 2018 07:28:58 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "45797758-41de-41b6-8493-c855cf878d12", - "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "435c5bc2-ca4c-4cfd-900a-2a151b536115", + "content-length" : "761", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "db20d68a-ed89-4ad8-a26b-3dfdb8146a37" + "x-ms-correlation-request-id" : "688fbcab-0b48-4840-8ba4-8074945a3dca" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231851Z:9630cecd-7471-42f1-81b5-2386a0694206", + "x-ms-routing-request-id" : "WESTUS2:20180530T072859Z:bd798a76-a7ab-4b1c-a50f-c232d88d7d85", "x-ms-ratelimit-remaining-subscription-reads" : "14919", - "date" : "Tue, 27 Mar 2018 23:18:51 GMT", + "date" : "Wed, 30 May 2018 07:28:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "07ab1502-e34e-436f-a48b-0e35a9453eed", + "x-ms-request-id" : "2ffe3959-d005-425a-873c-0e9c9a3cda54", "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9630cecd-7471-42f1-81b5-2386a0694206" + "x-ms-correlation-request-id" : "bd798a76-a7ab-4b1c-a50f-c232d88d7d85" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231921Z:c98f1762-f434-40b4-aa40-cb6d842581df", + "x-ms-routing-request-id" : "WESTUS2:20180530T072929Z:13132e32-b8bd-49e3-bec7-8971d94992df", "x-ms-ratelimit-remaining-subscription-reads" : "14918", - "date" : "Tue, 27 Mar 2018 23:19:20 GMT", + "date" : "Wed, 30 May 2018 07:29:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "20b75731-a770-490d-9d6a-9db4a4599929", + "x-ms-request-id" : "038e0955-3d15-4b77-85bb-28b570d581e3", "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c98f1762-f434-40b4-aa40-cb6d842581df" + "x-ms-correlation-request-id" : "13132e32-b8bd-49e3-bec7-8971d94992df" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T231951Z:d056d786-388e-46be-8c87-77cf84fe7dca", + "x-ms-routing-request-id" : "WESTUS2:20180530T072959Z:8e512d8d-6d91-4728-9c29-04d41620b002", "x-ms-ratelimit-remaining-subscription-reads" : "14917", - "date" : "Tue, 27 Mar 2018 23:19:50 GMT", + "date" : "Wed, 30 May 2018 07:29:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ce575d27-12c1-4bb0-abc4-6992eacec76f", + "x-ms-request-id" : "3264cab8-b851-4d6c-abb0-02b38cce653b", "content-length" : "642", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d056d786-388e-46be-8c87-77cf84fe7dca" + "x-ms-correlation-request-id" : "8e512d8d-6d91-4728-9c29-04d41620b002" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232021Z:cb069345-4a89-47dc-9412-994d63d99940", + "x-ms-routing-request-id" : "WESTUS2:20180530T073029Z:2e1931b8-4cfd-40fd-907e-141ee629f428", "x-ms-ratelimit-remaining-subscription-reads" : "14916", - "date" : "Tue, 27 Mar 2018 23:20:20 GMT", + "date" : "Wed, 30 May 2018 07:30:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f69ba35d-3582-4b7f-9b1b-8d2ff3ff64d8", - "content-length" : "643", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "51d82037-cfe7-4b03-8241-e4bcb702bd1b", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cb069345-4a89-47dc-9412-994d63d99940" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Storage/storageAccounts/javacsmsa72008?api-version=2017-10-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (StorageManagementClient, 2017-10-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "202", - "content-type" : "text/plain; charset=utf-8", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/99b49303-ecaf-45d0-9a0e-2c1e5a91e022?monitor=true&api-version=2017-10-01", - "x-ms-routing-request-id" : "WESTUS2:20180327T232023Z:83415e75-c845-4e88-800f-0df6a53a860c", - "date" : "Tue, 27 Mar 2018 23:20:23 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "expires" : "-1", - "x-ms-request-id" : "99b49303-ecaf-45d0-9a0e-2c1e5a91e022", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "83415e75-c845-4e88-800f-0df6a53a860c" + "x-ms-correlation-request-id" : "2e1931b8-4cfd-40fd-907e-141ee629f428" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/99b49303-ecaf-45d0-9a0e-2c1e5a91e022?monitor=true&api-version=2017-10-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (StorageManagementClient, 2017-10-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { - "StatusCode" : "202", - "content-type" : "text/plain; charset=utf-8", - "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/99b49303-ecaf-45d0-9a0e-2c1e5a91e022?monitor=true&api-version=2017-10-01", - "x-ms-routing-request-id" : "WESTUS2:20180327T232023Z:fe4840e2-2fe1-44ec-be8f-a92c7cbb11c3", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073059Z:64f9e560-c679-4f50-b8db-3ac5f80050f8", "x-ms-ratelimit-remaining-subscription-reads" : "14915", - "date" : "Tue, 27 Mar 2018 23:20:23 GMT", + "date" : "Wed, 30 May 2018 07:30:59 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2755bf2d-4410-485f-bd9b-74ef7c4a786b", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "84d5648b-a64e-41f0-9ebb-233588b63f36", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fe4840e2-2fe1-44ec-be8f-a92c7cbb11c3" + "x-ms-correlation-request-id" : "64f9e560-c679-4f50-b8db-3ac5f80050f8" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/99b49303-ecaf-45d0-9a0e-2c1e5a91e022?monitor=true&api-version=2017-10-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (StorageManagementClient, 2017-10-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Storage/storageAccounts/javacsmsa72008\",\"name\":\"javacsmsa72008\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"00000000-0000-0000-0000-000000000000\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2018-03-27T23:20:23.0344789Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2018-03-27T23:20:23.0344789Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2018-03-27T23:20:22.9876128Z\",\"primaryEndpoints\":{\"blob\":\"https://javacsmsa72008.blob.core.windows.net/\",\"queue\":\"https://javacsmsa72008.queue.core.windows.net/\",\"table\":\"https://javacsmsa72008.table.core.windows.net/\",\"file\":\"https://javacsmsa72008.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232040Z:0b327454-5343-4b0e-bfad-e7eb212ee724", + "x-ms-routing-request-id" : "WESTUS2:20180530T073130Z:5a95c7f5-412c-45bb-ab06-57e5266dfd17", "x-ms-ratelimit-remaining-subscription-reads" : "14914", - "date" : "Tue, 27 Mar 2018 23:20:40 GMT", + "date" : "Wed, 30 May 2018 07:31:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "20164a2a-ac68-4acd-8b2e-f876200c4705", - "content-length" : "1184", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "3771b4f3-b169-4fb4-b79f-d6fe54e56aca", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0b327454-5343-4b0e-bfad-e7eb212ee724" + "x-ms-correlation-request-id" : "5a95c7f5-412c-45bb-ab06-57e5266dfd17" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Storage/storageAccounts/javacsmsa72008?api-version=2017-10-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (StorageManagementClient, 2017-10-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Storage/storageAccounts/javacsmsa72008\",\"name\":\"javacsmsa72008\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"00000000-0000-0000-0000-000000000000\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2018-03-27T23:20:23.0344789Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2018-03-27T23:20:23.0344789Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2018-03-27T23:20:22.9876128Z\",\"primaryEndpoints\":{\"blob\":\"https://javacsmsa72008.blob.core.windows.net/\",\"queue\":\"https://javacsmsa72008.queue.core.windows.net/\",\"table\":\"https://javacsmsa72008.table.core.windows.net/\",\"file\":\"https://javacsmsa72008.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232041Z:7237714d-54e4-4abb-aebf-05f6ccc53b7e", + "x-ms-routing-request-id" : "WESTUS2:20180530T073200Z:f60369e1-bf7f-45a1-87d0-82e4ca9c7e8c", "x-ms-ratelimit-remaining-subscription-reads" : "14913", - "date" : "Tue, 27 Mar 2018 23:20:40 GMT", + "date" : "Wed, 30 May 2018 07:31:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "1cc63ce5-20e0-4a93-bae9-ce49c7dbdaee", - "content-length" : "1184", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "a31ce961-1740-41bc-a80b-a787d9d49981", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7237714d-54e4-4abb-aebf-05f6ccc53b7e" + "x-ms-correlation-request-id" : "f60369e1-bf7f-45a1-87d0-82e4ca9c7e8c" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}]}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232042Z:dfee4e1f-43b5-4d4e-a336-be0d6d945e78", + "x-ms-routing-request-id" : "WESTUS2:20180530T073230Z:13c892a8-3b9b-4ed8-8a51-adf83bedbdb2", "x-ms-ratelimit-remaining-subscription-reads" : "14912", - "date" : "Tue, 27 Mar 2018 23:20:41 GMT", + "date" : "Wed, 30 May 2018 07:32:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "72b1d7c9-ab4f-4149-ac90-22a81865d350", - "content-length" : "625", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "91e2c847-3fde-4787-8be8-c34199ad3c5d", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "13c892a8-3b9b-4ed8-8a51-adf83bedbdb2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073300Z:5754d930-1e4b-418d-985b-d0e44e5d8521", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "date" : "Wed, 30 May 2018 07:32:59 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5412699a-5f00-4e39-9af6-ad84a6a8dbc0", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5754d930-1e4b-418d-985b-d0e44e5d8521" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073330Z:846243fa-7bfc-411c-8717-a6f089d9a957", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "date" : "Wed, 30 May 2018 07:33:29 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3067244b-567b-4377-b93f-632f9e924c19", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "846243fa-7bfc-411c-8717-a6f089d9a957" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073400Z:cdd4a39d-481d-4075-9d8e-3ce442e95c2f", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "date" : "Wed, 30 May 2018 07:34:00 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "7b6aada7-8699-48d7-8c97-b383d0103862", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cdd4a39d-481d-4075-9d8e-3ce442e95c2f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073430Z:0cbd052d-2190-42c6-ad99-92dd5f8598d3", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "date" : "Wed, 30 May 2018 07:34:30 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "1d40d791-0dbe-43e0-a2e8-e6e246c35a07", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0cbd052d-2190-42c6-ad99-92dd5f8598d3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073501Z:bf374afa-79fb-4bf1-b264-6d1ab633f951", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "date" : "Wed, 30 May 2018 07:35:00 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f03c70d5-2c96-4d79-953c-bbb7d747d2f5", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bf374afa-79fb-4bf1-b264-6d1ab633f951" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073531Z:32ccd405-7894-4147-b238-e91bfa7d0b1c", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "date" : "Wed, 30 May 2018 07:35:30 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "34b527c9-2174-40d4-853c-289f49061577", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "32ccd405-7894-4147-b238-e91bfa7d0b1c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073601Z:c6916344-60b5-4fa8-ae6d-cf273d7e8a24", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "date" : "Wed, 30 May 2018 07:36:00 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "21fa7edd-0ea2-4ee4-8457-25f53cb0f399", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c6916344-60b5-4fa8-ae6d-cf273d7e8a24" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073631Z:6c649068-9237-4d44-b511-2dbf3b558aef", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "date" : "Wed, 30 May 2018 07:36:30 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "4be36633-6176-44d5-b0e2-1dc797170f13", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6c649068-9237-4d44-b511-2dbf3b558aef" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073701Z:1bd94e47-1978-473a-a40a-e28515555d3f", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "date" : "Wed, 30 May 2018 07:37:01 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3250eab0-1fcc-40ba-8ced-fd26f91d635e", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1bd94e47-1978-473a-a40a-e28515555d3f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073732Z:7a6802bc-6fd1-406a-aaff-0c73801bb76c", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "date" : "Wed, 30 May 2018 07:37:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "e4bcf55a-e8d4-42d1-98f3-7141a335194b", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7a6802bc-6fd1-406a-aaff-0c73801bb76c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073802Z:8240112e-f30a-4ada-a482-8f01b7f965ef", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "date" : "Wed, 30 May 2018 07:38:01 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2f6a3c01-41a3-428a-8025-992f1e5afab3", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8240112e-f30a-4ada-a482-8f01b7f965ef" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073832Z:a63c462d-5d42-4318-ad54-551580e3f9b1", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "date" : "Wed, 30 May 2018 07:38:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c0d8be2f-d8e8-4c91-b6c6-a33b8970cd98", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a63c462d-5d42-4318-ad54-551580e3f9b1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073902Z:69ef882f-dde9-4c1f-ab6b-a617a9d2dc16", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "date" : "Wed, 30 May 2018 07:39:01 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "dffbdca9-8c07-4c6a-a665-4493b3a7f847", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "69ef882f-dde9-4c1f-ab6b-a617a9d2dc16" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T073932Z:daff276c-e875-46dc-ba57-4a57bfb0cd81", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "date" : "Wed, 30 May 2018 07:39:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "69974029-ffe9-4477-9fa8-977e9f48f511", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "daff276c-e875-46dc-ba57-4a57bfb0cd81" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074002Z:aa58c50c-7693-4fea-8bc0-8788fd350ecf", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "date" : "Wed, 30 May 2018 07:40:01 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "fda77024-57ae-423e-b901-7e0ae6bc3a0e", + "content-length" : "642", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "aa58c50c-7693-4fea-8bc0-8788fd350ecf" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074032Z:493d10a0-63ff-4b26-a94f-62a1c21f520e", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "date" : "Wed, 30 May 2018 07:40:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f99751ae-468c-48cc-96c9-9f2ecb688ade", + "content-length" : "643", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "493d10a0-63ff-4b26-a94f-62a1c21f520e" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule2?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.40\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third/firewallRules/rule2\",\"name\":\"javacsmrc57085Third/rule2\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third/firewallRules/rule2?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180530T074033Z:7c0dce89-67d2-468e-a4cb-9a4fc1812890", + "date" : "Wed, 30 May 2018 07:40:33 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d1f71739-8dfc-4d4b-8bbd-3d594dcfd79f", + "content-length" : "311", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7c0dce89-67d2-468e-a4cb-9a4fc1812890" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule1?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third/firewallRules/rule1\",\"name\":\"javacsmrc57085Third/rule1\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third/firewallRules/rule1?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180530T074034Z:02dfac77-8abe-48a9-8503-2bafc7847101", + "date" : "Wed, 30 May 2018 07:40:34 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "48272e6f-406d-4c6e-8a02-79581b440fe2", + "content-length" : "309", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "02dfac77-8abe-48a9-8503-2bafc7847101" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074034Z:4ceca1b6-a2b6-4d2d-84bb-26aeecd919be", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "date" : "Wed, 30 May 2018 07:40:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "123b9309-bf50-447b-8239-a4818e7fa722", + "content-length" : "643", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4ceca1b6-a2b6-4d2d-84bb-26aeecd919be" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule2\",\"name\":\"javacsmrc57085Third/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/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule1\",\"name\":\"javacsmrc57085Third/rule1\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"}}]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074034Z:d74860dc-4b91-4c49-bd26-62d75916d9f6", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "date" : "Wed, 30 May 2018 07:40:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "b8144452-4906-49e9-a12e-84f665cf812a", + "content-length" : "633", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d74860dc-4b91-4c49-bd26-62d75916d9f6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/patchSchedules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc57085Third'.\\r\\nRequestID=a021e024-6600-4d4c-b748-a07b6e93a110\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180530T074035Z:229be29b-e32d-4784-89c9-b5cbc60db59b", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "date" : "Wed, 30 May 2018 07:40:34 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a021e024-6600-4d4c-b748-a07b6e93a110", + "content-length" : "187", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "229be29b-e32d-4784-89c9-b5cbc60db59b" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Storage/storageAccounts/javacsmsa01870?api-version=2017-10-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (StorageManagementClient, 2017-10-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "202", + "content-type" : "text/plain; charset=utf-8", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/d379408f-bfe5-400f-8123-ea87950714bd?monitor=true&api-version=2017-10-01", + "x-ms-routing-request-id" : "WESTUS2:20180530T074037Z:f7733fc2-eac9-41e6-ab99-c74c76a6f6b3", + "date" : "Wed, 30 May 2018 07:40:36 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d379408f-bfe5-400f-8123-ea87950714bd", + "content-length" : "0", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f7733fc2-eac9-41e6-ab99-c74c76a6f6b3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/d379408f-bfe5-400f-8123-ea87950714bd?monitor=true&api-version=2017-10-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (StorageManagementClient, 2017-10-01)" + }, + "Response" : { + "StatusCode" : "202", + "content-type" : "text/plain; charset=utf-8", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/d379408f-bfe5-400f-8123-ea87950714bd?monitor=true&api-version=2017-10-01", + "x-ms-routing-request-id" : "WESTUS2:20180530T074037Z:8b9f9cce-390a-4895-8231-def0ce7ea2ab", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "date" : "Wed, 30 May 2018 07:40:36 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a6e3f4bf-d26c-4f10-913e-7868f87c961c", + "content-length" : "0", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8b9f9cce-390a-4895-8231-def0ce7ea2ab" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/d379408f-bfe5-400f-8123-ea87950714bd?monitor=true&api-version=2017-10-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (StorageManagementClient, 2017-10-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Storage/storageAccounts/javacsmsa01870\",\"name\":\"javacsmsa01870\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"00000000-0000-0000-0000-000000000000\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2018-05-30T07:40:37.0440455Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2018-05-30T07:40:37.0440455Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2018-05-30T07:40:36.9659378Z\",\"primaryEndpoints\":{\"blob\":\"https://javacsmsa01870.blob.core.windows.net/\",\"queue\":\"https://javacsmsa01870.queue.core.windows.net/\",\"table\":\"https://javacsmsa01870.table.core.windows.net/\",\"file\":\"https://javacsmsa01870.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074054Z:258eb7ff-e9bd-4ea2-840c-3afba2581391", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "date" : "Wed, 30 May 2018 07:40:54 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f9c332c7-5eb6-419e-83c5-91d6bb20053a", + "content-length" : "1184", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "258eb7ff-e9bd-4ea2-840c-3afba2581391" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Storage/storageAccounts/javacsmsa01870?api-version=2017-10-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (StorageManagementClient, 2017-10-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Storage/storageAccounts/javacsmsa01870\",\"name\":\"javacsmsa01870\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"trustedDirectories\":[\"00000000-0000-0000-0000-000000000000\"],\"supportsHttpsTrafficOnly\":false,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2018-05-30T07:40:37.0440455Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2018-05-30T07:40:37.0440455Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2018-05-30T07:40:36.9659378Z\",\"primaryEndpoints\":{\"blob\":\"https://javacsmsa01870.blob.core.windows.net/\",\"queue\":\"https://javacsmsa01870.queue.core.windows.net/\",\"table\":\"https://javacsmsa01870.table.core.windows.net/\",\"file\":\"https://javacsmsa01870.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074054Z:8af66f34-27e5-44af-8c41-b41954099bd7", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "date" : "Wed, 30 May 2018 07:40:54 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8da85a3a-fee1-4039-99ba-826ebc4e118c", + "content-length" : "1184", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8af66f34-27e5-44af-8c41-b41954099bd7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074055Z:5907babd-6fab-4311-ad37-e5b0f0611917", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "date" : "Wed, 30 May 2018 07:40:55 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c40563e7-7880-4813-a272-12afffeb82db", + "content-length" : "625", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5907babd-6fab-4311-ad37-e5b0f0611917" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085/patchSchedules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc57085'.\\r\\nRequestID=51e8333f-5cbf-4f76-a6e4-a9518956451a\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180530T074055Z:c8622df7-c09d-473d-8a34-95f988c894ea", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "date" : "Wed, 30 May 2018 07:40:55 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "51e8333f-5cbf-4f76-a6e4-a9518956451a", + "content-length" : "182", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c8622df7-c09d-473d-8a34-95f988c894ea" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085/firewallRules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074056Z:4087c6d0-f47a-4451-9b21-512db5e0b8fd", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "date" : "Wed, 30 May 2018 07:40:56 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a1941400-cd34-4b7e-9230-21865588a508", + "content-length" : "12", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4087c6d0-f47a-4451-9b21-512db5e0b8fd" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}]}", + "x-ms-routing-request-id" : "WESTUS2:20180530T074056Z:083a3abc-1580-4539-ada1-2216f85a8225", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "date" : "Wed, 30 May 2018 07:40:56 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "083a3abc-1580-4539-ada1-2216f85a8225", + "content-length" : "1932", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-original-request-ids" : "42cedf89-9c79-4135-887b-f64168f9a147", + "x-ms-correlation-request-id" : "083a3abc-1580-4539-ada1-2216f85a8225" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second/patchSchedules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Second/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Sunday\",\"startHourUtc\":10,\"maintenanceWindow\":\"PT302M\"}]}}]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074056Z:5c1e8881-e118-4031-a12a-1be5b49fee4d", + "x-ms-ratelimit-remaining-subscription-reads" : "14885", + "date" : "Wed, 30 May 2018 07:40:56 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "62160313-9148-4d17-9684-4f10f17de50e", + "content-length" : "397", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5c1e8881-e118-4031-a12a-1be5b49fee4d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Second/firewallRules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074056Z:a2759be0-94d5-4bcf-bc29-a2860d24899c", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "date" : "Wed, 30 May 2018 07:40:56 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c9b998e9-6ca1-4df1-a65a-0a0498e3bd87", + "content-length" : "12", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a2759be0-94d5-4bcf-bc29-a2860d24899c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/patchSchedules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc57085Third'.\\r\\nRequestID=9cf21fcc-af4e-4a2f-b1d2-8541da75fe91\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180530T074056Z:f3425700-31cb-4ca0-8670-637fb0f5ae1f", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "date" : "Wed, 30 May 2018 07:40:56 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "9cf21fcc-af4e-4a2f-b1d2-8541da75fe91", + "content-length" : "187", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f3425700-31cb-4ca0-8670-637fb0f5ae1f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule2\",\"name\":\"javacsmrc57085Third/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/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule1\",\"name\":\"javacsmrc57085Third/rule1\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.1\",\"endIP\":\"192.168.0.4\"}}]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074056Z:74629473-d2bd-4664-a66e-f25db4c71e41", + "x-ms-ratelimit-remaining-subscription-reads" : "14882", + "date" : "Wed, 30 May 2018 07:40:56 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "890d33df-b208-41e1-891e-f28079350449", + "content-length" : "633", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "74629473-d2bd-4664-a66e-f25db4c71e41" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085/patchSchedules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc57085'.\\r\\nRequestID=c124fb06-f9c0-4010-9d66-07dd3621202e\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180530T074056Z:6cd644a8-0400-4827-be94-7a9f8a85b08b", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "date" : "Wed, 30 May 2018 07:40:56 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c124fb06-f9c0-4010-9d66-07dd3621202e", + "content-length" : "182", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6cd644a8-0400-4827-be94-7a9f8a85b08b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085/firewallRules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074056Z:266fe0db-1805-4592-9dc4-721544c1177a", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", + "date" : "Wed, 30 May 2018 07:40:56 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "806f6bbf-a153-416c-ac02-d526e3f161ff", + "content-length" : "12", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "266fe0db-1805-4592-9dc4-721544c1177a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074057Z:158f72f0-e8f1-4863-b47e-030bad0e143e", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", + "date" : "Wed, 30 May 2018 07:40:57 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "66d07489-d1e5-4674-9b4e-8f9d872b10e0", + "content-length" : "613", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "158f72f0-e8f1-4863-b47e-030bad0e143e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085/patchSchedules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc57085'.\\r\\nRequestID=4b52cb10-72d0-43ff-a9e5-934d4d88f470\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180530T074057Z:86593a6f-e402-4f5a-8d15-b735ad8646dd", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "date" : "Wed, 30 May 2018 07:40:57 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "4b52cb10-72d0-43ff-a9e5-934d4d88f470", + "content-length" : "182", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "86593a6f-e402-4f5a-8d15-b735ad8646dd" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085/firewallRules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074057Z:480d430c-8ba0-4a7a-9fb3-e635803e4bb8", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "date" : "Wed, 30 May 2018 07:40:57 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3edd7bc7-8c28-40fd-a257-bb5d94e9556b", + "content-length" : "12", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "480d430c-8ba0-4a7a-9fb3-e635803e4bb8" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085/listKeys?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"primaryKey\":\"AzLTvx64x+tgSCVhhTxzuMQFsJTnPxt08Iy7pAT6564=\",\"secondaryKey\":\"zy54h0iFzUBFMtD/hp4lt4uxQWZgwKSovZWgOj3CpIc=\"}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074057Z:ad9bbdf8-fc14-4e41-914b-fcd8b154ea56", + "date" : "Wed, 30 May 2018 07:40:57 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "44ea7663-3590-45a0-b0ce-254f944573cf", + "content-length" : "123", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ad9bbdf8-fc14-4e41-914b-fcd8b154ea56" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085/listKeys?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"primaryKey\":\"AzLTvx64x+tgSCVhhTxzuMQFsJTnPxt08Iy7pAT6564=\",\"secondaryKey\":\"zy54h0iFzUBFMtD/hp4lt4uxQWZgwKSovZWgOj3CpIc=\"}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074057Z:0455bdcc-743b-431b-945c-28a92b2d255e", + "date" : "Wed, 30 May 2018 07:40:57 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "10257681-54ca-4937-80dd-6c6aa982718d", + "content-length" : "123", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0455bdcc-743b-431b-945c-28a92b2d255e" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085/regenerateKey?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"primaryKey\":\"mIxqdbemDJlkAntBzdTw8UwOIYXRWerwMPPIQvY0oeM=\",\"secondaryKey\":\"zy54h0iFzUBFMtD/hp4lt4uxQWZgwKSovZWgOj3CpIc=\"}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074100Z:799190fb-a0d3-4941-866a-9033091dbd84", + "date" : "Wed, 30 May 2018 07:41:00 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "aee42ac1-7d1e-48c1-8b9b-d5437cf55ef2", + "content-length" : "123", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "799190fb-a0d3-4941-866a-9033091dbd84" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085/regenerateKey?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"primaryKey\":\"mIxqdbemDJlkAntBzdTw8UwOIYXRWerwMPPIQvY0oeM=\",\"secondaryKey\":\"bHtiZU4k+U9Mo83dnoge2Aal9muxDnC9uzzMsKYoPZ8=\"}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074101Z:10c15475-f526-4546-bf5e-e88ece05bee9", + "date" : "Wed, 30 May 2018 07:41:01 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "14bfbe43-a40f-4d45-8133-84d244ee0725", + "content-length" : "123", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "10c15475-f526-4546-bf5e-e88ece05bee9" + } + }, { + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074102Z:58259cff-ad32-471b-bdcc-ee4d9d703f5d", + "date" : "Wed, 30 May 2018 07:41:02 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a6bb2459-ce9d-43e8-b5aa-f67cf28dbb10", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "58259cff-ad32-471b-bdcc-ee4d9d703f5d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074133Z:cbc631fb-a2fb-4403-a9f3-8c882011ee21", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "date" : "Wed, 30 May 2018 07:41:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "96fa8a70-58d7-4123-96b5-c34be442f5db", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cbc631fb-a2fb-4403-a9f3-8c882011ee21" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074203Z:288dafc3-b0ec-4212-a689-605e284ba24e", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "date" : "Wed, 30 May 2018 07:42:02 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "11a82e34-7c2f-490c-8888-40f2f7e676ad", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "288dafc3-b0ec-4212-a689-605e284ba24e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074233Z:876f4ba1-a25d-4e28-830c-d07028cfd6cd", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", + "date" : "Wed, 30 May 2018 07:42:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "b1f67f2e-48ff-4a6a-845a-daed50f2a17c", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "876f4ba1-a25d-4e28-830c-d07028cfd6cd" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074304Z:9766084d-a928-4370-bd55-40a4694d88b5", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", + "date" : "Wed, 30 May 2018 07:43:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "af9e56b6-bda5-4537-8314-1e5020b197cb", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9766084d-a928-4370-bd55-40a4694d88b5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074334Z:19e65046-a24b-4033-86ae-9e41b4dd5002", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "date" : "Wed, 30 May 2018 07:43:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f102e049-d86f-4624-aa5e-2478921b73d9", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "19e65046-a24b-4033-86ae-9e41b4dd5002" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074404Z:f026958f-c14b-4712-a22c-cbcc53f39dfb", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "date" : "Wed, 30 May 2018 07:44:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a76f98ca-2185-482d-94bf-bb81eab8d98d", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f026958f-c14b-4712-a22c-cbcc53f39dfb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074435Z:5e93ca8a-a769-45eb-a9f9-c33a553aedfe", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "date" : "Wed, 30 May 2018 07:44:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f4d10ca2-cf95-4fc1-9239-cce677317609", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5e93ca8a-a769-45eb-a9f9-c33a553aedfe" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074505Z:04e63a58-94e3-4396-aa1a-8ab7dcf9655e", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "date" : "Wed, 30 May 2018 07:45:05 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "581851b4-5b57-4f3e-b59f-b0efe0a08de3", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "04e63a58-94e3-4396-aa1a-8ab7dcf9655e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074536Z:7b1219af-bb52-4669-9c2f-2b67f20ced80", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "date" : "Wed, 30 May 2018 07:45:35 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "dc886314-b7cb-4ba6-8ff1-5563e3621918", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7b1219af-bb52-4669-9c2f-2b67f20ced80" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074606Z:19d39ac0-d40e-429a-a82b-a1e8fe905514", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "date" : "Wed, 30 May 2018 07:46:06 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "e294913b-3fe8-4509-ba1e-dd1b36475c10", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "19d39ac0-d40e-429a-a82b-a1e8fe905514" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074636Z:52f75a68-c54f-4c6e-913a-cdc316178b5a", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "date" : "Wed, 30 May 2018 07:46:36 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d2ea35d7-a5f1-4af9-b83d-b4b3d694011d", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "52f75a68-c54f-4c6e-913a-cdc316178b5a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074706Z:6def24be-c917-445f-a66d-b998bbd96949", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "date" : "Wed, 30 May 2018 07:47:06 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5a5584d3-6979-47fc-9eed-a0a8d769401e", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6def24be-c917-445f-a66d-b998bbd96949" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074737Z:def66326-3532-4231-9c93-48ce3faed285", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "date" : "Wed, 30 May 2018 07:47:36 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "989b4479-364d-4b7f-b61c-5cc0105dc052", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "def66326-3532-4231-9c93-48ce3faed285" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074807Z:8a6178aa-044a-428c-b5b6-cb646346c071", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "date" : "Wed, 30 May 2018 07:48:07 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "678e8664-8d4c-451c-bb87-da2f556b525b", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dfee4e1f-43b5-4d4e-a336-be0d6d945e78" + "x-ms-correlation-request-id" : "8a6178aa-044a-428c-b5b6-cb646346c071" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2539,25 +4103,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redisavp3uconkyipmjxojqg43qx7mgje7og62kpngndtarkooecpabiy3newvqzvy/providers/Microsoft.Cache/Redis/redisubvnxumjq3qqogfhepe\",\"location\":\"West US\",\"name\":\"redisubvnxumjq3qqogfhepe\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redisubvnxumjq3qqogfhepe.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redisavp3uconkyipmjxojqg43qx7mgje7og62kpngndtarkooecpabiy3newvqzvy/providers/Microsoft.Cache/Redis/redis2uuztiqlpkdbcx3jytq\",\"location\":\"West US\",\"name\":\"redis2uuztiqlpkdbcx3jytq\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":1},\"enableNonSslPort\":false,\"tenantSettings\":{\"hello\":\"1\"},\"redisConfiguration\":{\"maxclients\":\"1000\",\"maxmemory-reserved\":\"50\",\"maxfragmentationmemory-reserved\":\"50\",\"maxmemory-delta\":\"50\"},\"accessKeys\":null,\"hostName\":\"redis2uuztiqlpkdbcx3jytq.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Second\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}]}", - "x-ms-routing-request-id" : "WESTUS2:20180327T232042Z:3f0d81ca-039a-4c05-acee-2a09612da93a", - "x-ms-ratelimit-remaining-subscription-reads" : "14911", - "date" : "Tue, 27 Mar 2018 23:20:41 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T074838Z:de430d5c-efb1-489f-87d2-e2bba090b21e", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "date" : "Wed, 30 May 2018 07:48:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "3f0d81ca-039a-4c05-acee-2a09612da93a", - "content-length" : "3372", + "x-ms-request-id" : "38b9af37-b64b-4581-beee-d81789eea7bb", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-original-request-ids" : "a8f06088-f402-443c-8e63-921fb821eded", - "x-ms-correlation-request-id" : "3f0d81ca-039a-4c05-acee-2a09612da93a" + "x-ms-correlation-request-id" : "de430d5c-efb1-489f-87d2-e2bba090b21e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2565,27 +4131,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232042Z:c709c8aa-2d76-40db-81d6-ef1e039bf054", - "x-ms-ratelimit-remaining-subscription-reads" : "14910", - "date" : "Tue, 27 Mar 2018 23:20:41 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T074908Z:dfec7c99-1408-427b-bcd6-6e2adced1779", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "date" : "Wed, 30 May 2018 07:49:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "682ac0bc-6f7a-46ac-a3d4-fb3c251689cb", - "content-length" : "613", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "1a4f2a2c-f3bc-4aec-bf23-ca4f2b2846b2", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c709c8aa-2d76-40db-81d6-ef1e039bf054" + "x-ms-correlation-request-id" : "dfec7c99-1408-427b-bcd6-6e2adced1779" } }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419/listKeys?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2593,27 +4159,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"primaryKey\":\"XeT/AeLPNRwSyY15LwxcIZOQdp1b4qqYSpUwJuCRhso=\",\"secondaryKey\":\"PROWNKPiuDLsevXiMnvv6CQ73gcRA+rhJGnH8tQLzNg=\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232042Z:437c013a-49c3-41ce-b742-9aa0a4adaaca", - "date" : "Tue, 27 Mar 2018 23:20:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T074938Z:280fe315-7771-4db0-ac2e-e6c845dfd3c8", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "date" : "Wed, 30 May 2018 07:49:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "768c5335-3f6f-4628-9c6f-935003547a52", - "content-length" : "123", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "6452b776-6b76-45cc-89e7-6fafea094a2e", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "437c013a-49c3-41ce-b742-9aa0a4adaaca" + "x-ms-correlation-request-id" : "280fe315-7771-4db0-ac2e-e6c845dfd3c8" } }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419/listKeys?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2621,27 +4187,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"primaryKey\":\"XeT/AeLPNRwSyY15LwxcIZOQdp1b4qqYSpUwJuCRhso=\",\"secondaryKey\":\"PROWNKPiuDLsevXiMnvv6CQ73gcRA+rhJGnH8tQLzNg=\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232042Z:82d39580-9839-4b58-8975-02ec70b2b1d4", - "date" : "Tue, 27 Mar 2018 23:20:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075009Z:54d60f0f-7b70-4f4e-9e70-0107adf64f93", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", + "date" : "Wed, 30 May 2018 07:50:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0612f02c-28e7-4ac4-852f-0dffa5b2cec5", - "content-length" : "123", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "a7ef4eb2-8b6b-4286-b8fb-220f0dc68efd", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "82d39580-9839-4b58-8975-02ec70b2b1d4" + "x-ms-correlation-request-id" : "54d60f0f-7b70-4f4e-9e70-0107adf64f93" } }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419/regenerateKey?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2649,27 +4215,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"primaryKey\":\"meW/MwM04ZEcFBUUzfdOwlkivVxUt4vi840Ya9OxP5w=\",\"secondaryKey\":\"PROWNKPiuDLsevXiMnvv6CQ73gcRA+rhJGnH8tQLzNg=\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232045Z:93fd4ae8-d21e-40ef-8791-c4a314e22a47", - "date" : "Tue, 27 Mar 2018 23:20:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075039Z:d514f3df-4af4-4767-9300-27193df3a568", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "date" : "Wed, 30 May 2018 07:50:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "747ad3b9-5366-4904-b501-43bfa92ab975", - "content-length" : "123", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "02a6908d-70b7-488d-bef7-cd2dfc11b1b9", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "93fd4ae8-d21e-40ef-8791-c4a314e22a47" + "x-ms-correlation-request-id" : "d514f3df-4af4-4767-9300-27193df3a568" } }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419/regenerateKey?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2677,27 +4243,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"primaryKey\":\"meW/MwM04ZEcFBUUzfdOwlkivVxUt4vi840Ya9OxP5w=\",\"secondaryKey\":\"6N/hgyrL+vvjXfm2oIef8j7417CSJbO2fEF3Hks6Ehw=\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232047Z:ea2528ab-2792-46b7-84d2-fd8fd94bd626", - "date" : "Tue, 27 Mar 2018 23:20:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075110Z:8b1e42da-8925-4ebe-aa98-8db783e8cded", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "date" : "Wed, 30 May 2018 07:51:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "b50cad25-60ff-4b0c-a973-59a0c0a50142", - "content-length" : "123", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "ebf86d7d-837b-4d35-99b0-f6c1c76edc04", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ea2528ab-2792-46b7-84d2-fd8fd94bd626" + "x-ms-correlation-request-id" : "8b1e42da-8925-4ebe-aa98-8db783e8cded" } }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2705,27 +4271,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232047Z:eaa70cba-e51f-4cda-95aa-fe014615d9c5", - "date" : "Tue, 27 Mar 2018 23:20:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075140Z:a877b093-8a19-4b80-ba5e-b30533ac0467", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "date" : "Wed, 30 May 2018 07:51:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2b97a49d-b9c3-4dbf-b084-460e1eaddb9e", + "x-ms-request-id" : "b5c9e5c1-37b3-4326-8b94-5da9429ee6d9", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eaa70cba-e51f-4cda-95aa-fe014615d9c5" + "x-ms-correlation-request-id" : "a877b093-8a19-4b80-ba5e-b30533ac0467" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2733,27 +4299,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232117Z:9c53ed4e-1caf-40f7-879f-57d6eb7e99b9", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", - "date" : "Tue, 27 Mar 2018 23:21:17 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075210Z:7b47214c-dc58-4d33-a930-651e72dec4bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "date" : "Wed, 30 May 2018 07:52:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "5f3f33cb-b1c0-4588-b857-c0512d399e13", + "x-ms-request-id" : "4c7ca601-2131-4ebf-80e9-c190e097a577", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c53ed4e-1caf-40f7-879f-57d6eb7e99b9" + "x-ms-correlation-request-id" : "7b47214c-dc58-4d33-a930-651e72dec4bd" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2761,27 +4327,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232148Z:ed33f3ff-4350-4422-8dc9-10f04afc4e0d", - "x-ms-ratelimit-remaining-subscription-reads" : "14908", - "date" : "Tue, 27 Mar 2018 23:21:47 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075241Z:7bedac6c-6af2-4f1c-aa4c-82b615a1c28e", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "date" : "Wed, 30 May 2018 07:52:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "dbd770c1-7d89-4d47-aff6-4a72aa8a0bfe", + "x-ms-request-id" : "117fc6d0-b450-45be-ba4a-4da3d74120b5", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ed33f3ff-4350-4422-8dc9-10f04afc4e0d" + "x-ms-correlation-request-id" : "7bedac6c-6af2-4f1c-aa4c-82b615a1c28e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2789,27 +4355,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232218Z:81ac31fb-bffa-4f0b-b5fe-aa2edcbfdfa5", - "x-ms-ratelimit-remaining-subscription-reads" : "14907", - "date" : "Tue, 27 Mar 2018 23:22:17 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075311Z:a90e13ad-9c62-4020-a927-437a12223c91", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "date" : "Wed, 30 May 2018 07:53:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "8d2d94ca-17b0-470e-a877-91849ae0e321", + "x-ms-request-id" : "d733c9b4-349a-41d2-8463-21548d981f70", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "81ac31fb-bffa-4f0b-b5fe-aa2edcbfdfa5" + "x-ms-correlation-request-id" : "a90e13ad-9c62-4020-a927-437a12223c91" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2817,27 +4383,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232248Z:dafacec3-7d48-43a1-965f-81ee464828d7", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", - "date" : "Tue, 27 Mar 2018 23:22:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075341Z:defaef19-ae07-4139-846c-8c9b6f6e315e", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "date" : "Wed, 30 May 2018 07:53:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a9f54ad8-0708-4e27-ae72-8b3d8c246b14", + "x-ms-request-id" : "4d500f7c-7e87-4a4b-b626-b507c64442d3", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dafacec3-7d48-43a1-965f-81ee464828d7" + "x-ms-correlation-request-id" : "defaef19-ae07-4139-846c-8c9b6f6e315e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2845,27 +4411,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232319Z:0ad4f093-09b6-4923-9bda-ac736e3626cb", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", - "date" : "Tue, 27 Mar 2018 23:23:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075412Z:175093c9-df20-44f2-98f1-bdb5f6afa267", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "date" : "Wed, 30 May 2018 07:54:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "4043151c-c93e-4af6-9e18-c0df2ed16d10", + "x-ms-request-id" : "185b56eb-7bda-40e4-be79-c424ae86df0b", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0ad4f093-09b6-4923-9bda-ac736e3626cb" + "x-ms-correlation-request-id" : "175093c9-df20-44f2-98f1-bdb5f6afa267" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2873,27 +4439,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232349Z:264c1bb6-c149-429a-800c-e80c23e6831a", - "x-ms-ratelimit-remaining-subscription-reads" : "14904", - "date" : "Tue, 27 Mar 2018 23:23:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075442Z:4d9fff2c-325b-45b0-ac99-9d1b79c8c319", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "date" : "Wed, 30 May 2018 07:54:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "dff55188-059d-4e0b-81a4-3a932bc651fb", + "x-ms-request-id" : "8f121584-6f7d-486f-a8b3-4d700ce2eb5f", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "264c1bb6-c149-429a-800c-e80c23e6831a" + "x-ms-correlation-request-id" : "4d9fff2c-325b-45b0-ac99-9d1b79c8c319" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2901,27 +4467,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232419Z:6753aac8-59ed-4669-9506-bc56183342bd", - "x-ms-ratelimit-remaining-subscription-reads" : "14903", - "date" : "Tue, 27 Mar 2018 23:24:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075513Z:f341c44d-fc3b-43a8-809f-79fd9e79eb06", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "date" : "Wed, 30 May 2018 07:55:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "7cd70016-887d-4cbb-ade9-fef5d84a05ee", + "x-ms-request-id" : "09687716-4ef7-4754-a74d-0e5be3067fce", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6753aac8-59ed-4669-9506-bc56183342bd" + "x-ms-correlation-request-id" : "f341c44d-fc3b-43a8-809f-79fd9e79eb06" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2929,27 +4495,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232450Z:949bce30-155c-4f8a-b56e-67bb1cf2042c", - "x-ms-ratelimit-remaining-subscription-reads" : "14902", - "date" : "Tue, 27 Mar 2018 23:24:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075543Z:871974e0-78ad-4809-aa00-4443d7fc4722", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "date" : "Wed, 30 May 2018 07:55:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "12661308-72d9-4837-bea9-08c638c5f66d", + "x-ms-request-id" : "67c617c8-841d-4d1b-abc9-527b152386ce", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "949bce30-155c-4f8a-b56e-67bb1cf2042c" + "x-ms-correlation-request-id" : "871974e0-78ad-4809-aa00-4443d7fc4722" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2957,27 +4523,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232520Z:b67a8a34-4d20-4e1a-a8c6-95cb4afc5670", - "x-ms-ratelimit-remaining-subscription-reads" : "14901", - "date" : "Tue, 27 Mar 2018 23:25:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075613Z:5e092efa-a32b-43d5-9f33-0e338dc1ea94", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "date" : "Wed, 30 May 2018 07:56:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "264af9ff-996c-4c8c-9421-0721b84e8a25", + "x-ms-request-id" : "4fa958e7-2ac0-42c1-9644-5e66442695d4", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b67a8a34-4d20-4e1a-a8c6-95cb4afc5670" + "x-ms-correlation-request-id" : "5e092efa-a32b-43d5-9f33-0e338dc1ea94" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2985,27 +4551,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232550Z:fbaf37cf-3f1d-4cd0-81b7-ca4e2b88ed78", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", - "date" : "Tue, 27 Mar 2018 23:25:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075644Z:1db07064-7100-4996-a5a9-7058de92a309", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "date" : "Wed, 30 May 2018 07:56:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ad9b4fe3-c286-46ee-86fc-88452490ed9a", + "x-ms-request-id" : "8119e081-7fe8-4ea5-b401-c423e506d1ba", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fbaf37cf-3f1d-4cd0-81b7-ca4e2b88ed78" + "x-ms-correlation-request-id" : "1db07064-7100-4996-a5a9-7058de92a309" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3013,27 +4579,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232621Z:a5a3e179-f136-466d-be82-c4159a34be3b", - "x-ms-ratelimit-remaining-subscription-reads" : "14899", - "date" : "Tue, 27 Mar 2018 23:26:21 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075714Z:ae422966-05e9-4c55-b809-d30743fd6d5c", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "date" : "Wed, 30 May 2018 07:57:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "9dcbc9f9-fc49-408f-bdb2-33e77e63fc2b", + "x-ms-request-id" : "0c73fc2a-57a0-432e-94f6-dd4a4652426a", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a5a3e179-f136-466d-be82-c4159a34be3b" + "x-ms-correlation-request-id" : "ae422966-05e9-4c55-b809-d30743fd6d5c" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3041,27 +4607,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232651Z:c0ffcd6d-5ac7-4785-8b80-ab063daf0b13", - "x-ms-ratelimit-remaining-subscription-reads" : "14898", - "date" : "Tue, 27 Mar 2018 23:26:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075744Z:7623300b-e223-4247-9478-d540cc1103ad", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "date" : "Wed, 30 May 2018 07:57:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e9493e6d-aad2-4391-865e-8dc410770943", + "x-ms-request-id" : "6d642e0e-f7ae-4fad-b069-d3b5f3fa7724", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0ffcd6d-5ac7-4785-8b80-ab063daf0b13" + "x-ms-correlation-request-id" : "7623300b-e223-4247-9478-d540cc1103ad" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3069,27 +4635,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232721Z:4b39a140-9f44-4203-b42d-a2516563095b", - "x-ms-ratelimit-remaining-subscription-reads" : "14897", - "date" : "Tue, 27 Mar 2018 23:27:21 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075815Z:0f210b9c-a98f-4437-a7f0-1c4d6ae0ea3d", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "date" : "Wed, 30 May 2018 07:58:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "5f51c4d1-6d87-4411-9db8-153c015daac4", + "x-ms-request-id" : "3c6955e2-b113-4b9c-a735-81c0ed85cc61", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4b39a140-9f44-4203-b42d-a2516563095b" + "x-ms-correlation-request-id" : "0f210b9c-a98f-4437-a7f0-1c4d6ae0ea3d" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3097,27 +4663,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232751Z:621013d5-a21d-4490-b358-9d8ed192d777", - "x-ms-ratelimit-remaining-subscription-reads" : "14896", - "date" : "Tue, 27 Mar 2018 23:27:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075845Z:755cfe36-2e19-49e5-bcf4-14f668abce90", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "date" : "Wed, 30 May 2018 07:58:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "263843ff-81ab-4bff-8d67-e2fcb6597429", + "x-ms-request-id" : "1abb7bea-67ef-4975-a4e2-dcee0d164d01", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "621013d5-a21d-4490-b358-9d8ed192d777" + "x-ms-correlation-request-id" : "755cfe36-2e19-49e5-bcf4-14f668abce90" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3125,27 +4691,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232822Z:7ad3b9fc-013a-4297-afb0-8152d7cf9112", - "x-ms-ratelimit-remaining-subscription-reads" : "14895", - "date" : "Tue, 27 Mar 2018 23:28:21 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075915Z:e1f652ab-a056-42a5-948c-fb0cde49f0fd", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "date" : "Wed, 30 May 2018 07:59:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "24980330-957b-41f3-8eb2-5dc2ef2a5852", + "x-ms-request-id" : "8da09b27-9069-4eda-adef-f1658527e2f7", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7ad3b9fc-013a-4297-afb0-8152d7cf9112" + "x-ms-correlation-request-id" : "e1f652ab-a056-42a5-948c-fb0cde49f0fd" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3153,27 +4719,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232852Z:815e2577-b516-4f82-9298-3cdc4471d946", - "x-ms-ratelimit-remaining-subscription-reads" : "14894", - "date" : "Tue, 27 Mar 2018 23:28:51 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T075946Z:e1a8d889-767f-4eef-b52f-ffcd7c296c22", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "date" : "Wed, 30 May 2018 07:59:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "35ff3af9-abd0-4c96-9a09-5db09d41366c", + "x-ms-request-id" : "7ddb1b2a-e23b-4fa3-bd65-58a8aadba8d3", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "815e2577-b516-4f82-9298-3cdc4471d946" + "x-ms-correlation-request-id" : "e1a8d889-767f-4eef-b52f-ffcd7c296c22" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3181,27 +4747,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232922Z:ffed355e-00bf-46b2-bd51-d2741b0035bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14893", - "date" : "Tue, 27 Mar 2018 23:29:21 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080016Z:cf3a2d1f-f92b-4687-add1-5b41c9f4b296", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "date" : "Wed, 30 May 2018 08:00:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ea25237b-2668-4f76-bf1b-3c8c15978ecf", + "x-ms-request-id" : "a23eaa7f-61d8-4a09-aee6-0dc22173a085", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ffed355e-00bf-46b2-bd51-d2741b0035bf" + "x-ms-correlation-request-id" : "cf3a2d1f-f92b-4687-add1-5b41c9f4b296" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3209,27 +4775,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T232952Z:26de013f-01ca-45cf-9b3f-17ae1cbbbbe2", - "x-ms-ratelimit-remaining-subscription-reads" : "14892", - "date" : "Tue, 27 Mar 2018 23:29:52 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080046Z:78869b20-86bd-4069-8d33-375d94612137", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "date" : "Wed, 30 May 2018 08:00:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "727dd7fc-dadf-42c3-af9d-572628fd6d22", + "x-ms-request-id" : "163f7b7c-5e0b-48f2-9f0f-9c358576008f", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "26de013f-01ca-45cf-9b3f-17ae1cbbbbe2" + "x-ms-correlation-request-id" : "78869b20-86bd-4069-8d33-375d94612137" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3237,27 +4803,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233023Z:71d30b95-e943-4772-acd3-445e5d31045e", - "x-ms-ratelimit-remaining-subscription-reads" : "14891", - "date" : "Tue, 27 Mar 2018 23:30:22 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080117Z:1e02c3b9-8ac3-4b6a-9c94-ec0d1f6725ec", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "date" : "Wed, 30 May 2018 08:01:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "9b04fe44-0ed3-4e19-9a33-9023037a24fe", + "x-ms-request-id" : "172bc25c-f392-492b-8c50-44f341c4009d", "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "71d30b95-e943-4772-acd3-445e5d31045e" + "x-ms-correlation-request-id" : "1e02c3b9-8ac3-4b6a-9c94-ec0d1f6725ec" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3265,27 +4831,305 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233053Z:7c3c6232-ac6a-45a0-9d83-143d4d90b911", - "x-ms-ratelimit-remaining-subscription-reads" : "14890", - "date" : "Tue, 27 Mar 2018 23:30:52 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080147Z:cccc2d15-7684-4fbd-845b-b8e6da51356a", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "date" : "Wed, 30 May 2018 08:01:47 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "70129eec-d687-4289-b881-5be5bb93ba61", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cccc2d15-7684-4fbd-845b-b8e6da51356a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080217Z:a39b38b9-4997-49b0-91ea-b9e417419cbb", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "date" : "Wed, 30 May 2018 08:02:17 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "410ae7ce-9b5c-4bf9-8af2-f548ed0eadfa", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a39b38b9-4997-49b0-91ea-b9e417419cbb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080247Z:0fb85dac-b3ff-4b19-91fa-4bec1c25f333", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "date" : "Wed, 30 May 2018 08:02:47 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c0b561d5-14ed-4eee-8de1-522935715aa5", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0fb85dac-b3ff-4b19-91fa-4bec1c25f333" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080318Z:0290ae1f-8de3-48e6-bd2f-af7a7c46e180", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "date" : "Wed, 30 May 2018 08:03:17 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "ef12a111-fa6f-4525-ad7d-3aacb7848df2", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0290ae1f-8de3-48e6-bd2f-af7a7c46e180" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080348Z:08a93234-9db9-4943-9985-f7ae92f70e9a", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "date" : "Wed, 30 May 2018 08:03:48 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "1566b6d6-7a2c-4af1-ae45-2911fe1b9241", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "08a93234-9db9-4943-9985-f7ae92f70e9a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080419Z:282f741c-357f-4ba9-89d6-f2ab208e34dc", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "date" : "Wed, 30 May 2018 08:04:18 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8b98780d-c6e1-4bcc-a16e-1de4ec0fb1ba", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "282f741c-357f-4ba9-89d6-f2ab208e34dc" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080449Z:cc061650-490f-43ef-aa08-663efef3d122", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "date" : "Wed, 30 May 2018 08:04:48 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3198e4bf-d913-4d67-9c3e-bce1f0e4a4da", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cc061650-490f-43ef-aa08-663efef3d122" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080519Z:0039f070-1358-48f9-adea-c0df276c2d42", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "date" : "Wed, 30 May 2018 08:05:18 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5762fabf-e3b4-4d3c-bd0b-276a952c482d", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0039f070-1358-48f9-adea-c0df276c2d42" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080549Z:35212cba-6d6b-428a-acb4-5ba9c04472ac", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "date" : "Wed, 30 May 2018 08:05:49 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8f456062-b385-4f42-bdbb-3f1a5f8c9483", + "content-length" : "611", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "35212cba-6d6b-428a-acb4-5ba9c04472ac" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080620Z:bdb89ccf-60f3-4910-bbd2-f35c1dff48b3", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "date" : "Wed, 30 May 2018 08:06:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "17967f9b-bdfb-4406-9868-bd5d39b7283f", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "6d6a8caa-1326-4b44-925b-7b63f97bff76", + "content-length" : "616", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bdb89ccf-60f3-4910-bbd2-f35c1dff48b3" + } + }, { + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "400", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"BadRequest\",\"message\":\"Invalid update request: properties.sku.name cannot be updated to Basic.\\r\\nRequestID=2875b937-24e8-4962-a477-adcc73cb6d90\",\"target\":null}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "x-ms-routing-request-id" : "WESTUS2:20180530T080621Z:fd97031f-9fda-4c69-b33f-21e8d5982f12", + "date" : "Wed, 30 May 2018 08:06:20 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2875b937-24e8-4962-a477-adcc73cb6d90", + "content-length" : "179", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7c3c6232-ac6a-45a0-9d83-143d4d90b911" + "x-ms-correlation-request-id" : "fd97031f-9fda-4c69-b33f-21e8d5982f12" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3293,27 +5137,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085\",\"location\":\"East Asia\",\"name\":\"javacsmrc57085\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233123Z:415b8c15-6bbf-41aa-82d6-86d20769c8d2", - "x-ms-ratelimit-remaining-subscription-reads" : "14889", - "date" : "Tue, 27 Mar 2018 23:31:23 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080621Z:1ebd80b1-8a36-4d69-851e-8129b32fd112", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "date" : "Wed, 30 May 2018 08:06:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ecd34c6b-ad4a-4b0b-986d-333c10f0dd34", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "e66b4ab1-f57f-4d79-8701-ff6d63484d4a", + "content-length" : "616", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "415b8c15-6bbf-41aa-82d6-86d20769c8d2" + "x-ms-correlation-request-id" : "1ebd80b1-8a36-4d69-851e-8129b32fd112" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085/firewallRules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3321,195 +5165,178 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"value\":[]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233153Z:b3e0dc3e-5096-433b-9bd9-7d857eff19cf", - "x-ms-ratelimit-remaining-subscription-reads" : "14888", - "date" : "Tue, 27 Mar 2018 23:31:53 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080621Z:11c89d99-8fbf-429a-b516-fa346628013e", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "date" : "Wed, 30 May 2018 08:06:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "385bec0a-edb3-43ca-9cec-bec11e931b09", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "e876f8ee-25a1-4e49-b627-6e47de596463", + "content-length" : "12", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b3e0dc3e-5096-433b-9bd9-7d857eff19cf" + "x-ms-correlation-request-id" : "11c89d99-8fbf-429a-b516-fa346628013e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085/patchSchedules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233224Z:3219a14a-54e2-4d77-b0fc-d6ad38baa657", - "x-ms-ratelimit-remaining-subscription-reads" : "14887", - "date" : "Tue, 27 Mar 2018 23:32:23 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc57085'.\\r\\nRequestID=95ad56fb-6ff7-403d-a57f-506d25a763c4\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180530T080622Z:d70a1b21-4336-43ac-854a-03b2ff44d110", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "date" : "Wed, 30 May 2018 08:06:21 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "68387707-7e32-4943-800c-8a96136a35f0", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "95ad56fb-6ff7-403d-a57f-506d25a763c4", + "content-length" : "182", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3219a14a-54e2-4d77-b0fc-d6ad38baa657" + "x-ms-correlation-request-id" : "d70a1b21-4336-43ac-854a-03b2ff44d110" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587/providers/Microsoft.Cache/Redis/javacsmrc57085?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233254Z:54f786fc-13e1-42c4-8755-b370099dd186", - "x-ms-ratelimit-remaining-subscription-reads" : "14886", - "date" : "Tue, 27 Mar 2018 23:32:54 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/d66d774f-2687-4478-b5b3-2b82714f5047?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180530T080623Z:fef577d2-f1ff-439f-9e06-3f84ac568473", + "date" : "Wed, 30 May 2018 08:06:22 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "6721b224-928b-4971-b36c-405615762127", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d66d774f-2687-4478-b5b3-2b82714f5047", + "content-length" : "0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "54f786fc-13e1-42c4-8755-b370099dd186" + "x-ms-correlation-request-id" : "fef577d2-f1ff-439f-9e06-3f84ac568473", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/d66d774f-2687-4478-b5b3-2b82714f5047?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233325Z:8055cb46-f26c-4006-894d-8525d1ca21e0", - "x-ms-ratelimit-remaining-subscription-reads" : "14885", - "date" : "Tue, 27 Mar 2018 23:33:25 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/d66d774f-2687-4478-b5b3-2b82714f5047?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180530T080623Z:20354581-b233-40ff-88f6-1d123b15935a", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "date" : "Wed, 30 May 2018 08:06:22 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d9a11f85-4711-4c30-9ed6-68117ab747d6", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "346d4b1f-a09e-4c42-84b3-6caad7ee9342", + "content-length" : "0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8055cb46-f26c-4006-894d-8525d1ca21e0" + "x-ms-correlation-request-id" : "20354581-b233-40ff-88f6-1d123b15935a" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/d66d774f-2687-4478-b5b3-2b82714f5047?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233355Z:bc31de17-4f8f-435d-8323-2228d8c7a119", - "x-ms-ratelimit-remaining-subscription-reads" : "14884", - "date" : "Tue, 27 Mar 2018 23:33:55 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/d66d774f-2687-4478-b5b3-2b82714f5047?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180530T080653Z:4906d729-8111-40c1-b844-02af3e83a239", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "date" : "Wed, 30 May 2018 08:06:53 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c50a3af7-a1ed-486c-adea-867bcf710904", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "afd588da-60df-4ac6-bf60-5ea74745b2c1", + "content-length" : "0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bc31de17-4f8f-435d-8323-2228d8c7a119" + "x-ms-correlation-request-id" : "4906d729-8111-40c1-b844-02af3e83a239" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/d66d774f-2687-4478-b5b3-2b82714f5047?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233425Z:97ac5734-78e4-4525-ab42-06b68043f623", - "x-ms-ratelimit-remaining-subscription-reads" : "14883", - "date" : "Tue, 27 Mar 2018 23:34:25 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/d66d774f-2687-4478-b5b3-2b82714f5047?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180530T080723Z:18498ad3-2074-404e-833a-198b5c539423", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "date" : "Wed, 30 May 2018 08:07:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "1f2aea74-a65c-46ed-9f9c-a85a17dfe983", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "832abf3f-f221-4ddc-be9b-3ac4366aa7f2", + "content-length" : "0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "97ac5734-78e4-4525-ab42-06b68043f623" + "x-ms-correlation-request-id" : "18498ad3-2074-404e-833a-198b5c539423" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/d66d774f-2687-4478-b5b3-2b82714f5047?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233456Z:cb53ff35-ebfc-4679-8986-b1ec98323973", - "x-ms-ratelimit-remaining-subscription-reads" : "14882", - "date" : "Tue, 27 Mar 2018 23:34:55 GMT", - "vary" : "Accept-Encoding", + "Body" : "", + "x-ms-routing-request-id" : "WESTUS2:20180530T080754Z:0449a490-b30b-4850-aa72-2fae65d17df4", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "date" : "Wed, 30 May 2018 08:07:54 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "b1742d26-311b-44ce-bd56-ddd26e7b8e9e", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d2da9151-52ca-44ea-bc5a-486266809bff", + "content-length" : "0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cb53ff35-ebfc-4679-8986-b1ec98323973" + "x-ms-correlation-request-id" : "0449a490-b30b-4850-aa72-2fae65d17df4" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3517,83 +5344,79 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233526Z:f576d3f8-6cb2-48d0-8f1e-7b6f41399ead", - "x-ms-ratelimit-remaining-subscription-reads" : "14882", - "date" : "Tue, 27 Mar 2018 23:35:26 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080757Z:447209db-d03d-488a-8226-09d41cbe8365", + "date" : "Wed, 30 May 2018 08:07:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "6a2fb197-999f-4aca-baa4-0d0a31d91a97", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "a7b1f52d-30cf-4e3c-8a5c-6225cbdd1da3", + "content-length" : "643", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f576d3f8-6cb2-48d0-8f1e-7b6f41399ead" + "x-ms-correlation-request-id" : "447209db-d03d-488a-8226-09d41cbe8365" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule1?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233557Z:93aacafc-c0d8-449a-ad63-178e5995e4dd", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "date" : "Tue, 27 Mar 2018 23:35:56 GMT", - "vary" : "Accept-Encoding", + "Body" : "", + "x-ms-routing-request-id" : "WESTUS2:20180530T080758Z:0b2578f8-957b-453a-9b94-b8a554ee8b7d", + "date" : "Wed, 30 May 2018 08:07:58 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "3b95a346-60ed-46b7-98bc-d718221fa662", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "6dc2f223-ba0a-4633-92d1-5615c518eedd", + "content-length" : "0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "93aacafc-c0d8-449a-ad63-178e5995e4dd" + "x-ms-correlation-request-id" : "0b2578f8-957b-453a-9b94-b8a554ee8b7d", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule3?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233627Z:0a45fcb8-cd7d-48b9-89d1-ceda49a8c40a", - "x-ms-ratelimit-remaining-subscription-reads" : "14880", - "date" : "Tue, 27 Mar 2018 23:36:26 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third/firewallRules/rule3\",\"name\":\"javacsmrc57085Third/rule3\",\"type\":\"Microsoft.Cache/redis/firewallRules\"}", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/redis/javacsmrc57085Third/firewallRules/rule3?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180530T080800Z:f58bdf02-4a33-4148-b320-c64f2df694db", + "date" : "Wed, 30 May 2018 08:07:59 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d9f95ae1-7145-4741-aebf-64b45cfcdccd", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "debb8d23-1e12-4d23-abc8-8b3f97ee6460", + "content-length" : "312", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0a45fcb8-cd7d-48b9-89d1-ceda49a8c40a" + "x-ms-correlation-request-id" : "f58bdf02-4a33-4148-b320-c64f2df694db" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3601,27 +5424,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233657Z:2f39974e-caf6-40a1-8762-aa03d8bc57b7", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "date" : "Tue, 27 Mar 2018 23:36:56 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080800Z:1f4772f2-5b05-4984-820e-c6d8a58c5ea5", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", + "date" : "Wed, 30 May 2018 08:07:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "59c068bf-ccf3-4e8f-b55f-0495dc789472", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "517a5a6a-cd85-4604-9089-a0503b4de17a", + "content-length" : "643", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2f39974e-caf6-40a1-8762-aa03d8bc57b7" + "x-ms-correlation-request-id" : "1f4772f2-5b05-4984-820e-c6d8a58c5ea5" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3629,55 +5452,53 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule2\",\"name\":\"javacsmrc57085Third/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/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule3\",\"name\":\"javacsmrc57085Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233727Z:7aaf14e4-076c-412e-97b4-e913bcb7da9d", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "date" : "Tue, 27 Mar 2018 23:37:27 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080800Z:f284591f-6d0c-44cb-959c-2f29baf0effb", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "date" : "Wed, 30 May 2018 08:07:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "5bbbd7c6-93b1-4595-a31d-c62cca226c49", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "dcf2eb6d-d334-41c6-9a85-f4bd85202b90", + "content-length" : "636", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7aaf14e4-076c-412e-97b4-e913bcb7da9d" + "x-ms-correlation-request-id" : "f284591f-6d0c-44cb-959c-2f29baf0effb" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/patchSchedules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233758Z:fab2a838-e58b-4990-8638-838de4c0dead", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", - "date" : "Tue, 27 Mar 2018 23:37:57 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc57085Third'.\\r\\nRequestID=2ddfe96c-6f3e-4484-ae05-78018b01e7a5\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180530T080800Z:a1e96a2f-ecab-40d3-87fc-34d20a51d292", + "x-ms-ratelimit-remaining-subscription-reads" : "14845", + "date" : "Wed, 30 May 2018 08:07:59 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "273c8855-0c54-41a2-991a-5619f9d83e67", - "content-length" : "611", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "2ddfe96c-6f3e-4484-ae05-78018b01e7a5", + "content-length" : "187", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fab2a838-e58b-4990-8638-838de4c0dead" + "x-ms-correlation-request-id" : "a1e96a2f-ecab-40d3-87fc-34d20a51d292" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3685,53 +5506,55 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233828Z:afd486c4-90a6-43d6-8737-9d1a2d1d5182", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", - "date" : "Tue, 27 Mar 2018 23:38:28 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080800Z:76e21631-e825-4d73-996f-d46faacd8277", + "date" : "Wed, 30 May 2018 08:07:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "40eac08a-06df-4b1b-8367-c52007e8f063", - "content-length" : "616", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "ebb8651a-8047-46ed-b224-f1a3c6d50610", + "content-length" : "643", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "afd486c4-90a6-43d6-8737-9d1a2d1d5182" + "x-ms-correlation-request-id" : "76e21631-e825-4d73-996f-d46faacd8277" } }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "400", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"BadRequest\",\"message\":\"Invalid update request: properties.sku.name cannot be updated to Basic.\\r\\nRequestID=d5ffde35-3331-4135-a733-cb4f0039edd0\",\"target\":null}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "x-ms-routing-request-id" : "WESTUS2:20180327T233828Z:2eed19ac-d3c8-4603-a58c-ddf8ce884cca", - "date" : "Tue, 27 Mar 2018 23:38:28 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080800Z:82f97aba-1a26-49b5-a15f-c65227c4b5b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14844", + "date" : "Wed, 30 May 2018 08:08:00 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d5ffde35-3331-4135-a733-cb4f0039edd0", - "content-length" : "179", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "a929d5ee-8bb5-4910-99fe-bef93494ec1e", + "content-length" : "643", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2eed19ac-d3c8-4603-a58c-ddf8ce884cca" + "x-ms-correlation-request-id" : "82f97aba-1a26-49b5-a15f-c65227c4b5b7" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3739,152 +5562,163 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419\",\"location\":\"East Asia\",\"name\":\"javacsmrc07419\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule2\",\"name\":\"javacsmrc57085Third/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/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule3\",\"name\":\"javacsmrc57085Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T233829Z:dafa6a9b-ab13-41ca-b718-77d4b1c55e3c", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "date" : "Tue, 27 Mar 2018 23:38:28 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080800Z:f324143a-4bdb-4cfa-a82a-25861f077147", + "x-ms-ratelimit-remaining-subscription-reads" : "14843", + "date" : "Wed, 30 May 2018 08:08:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "67ae3c75-153b-411a-b302-cc23ba3e9d46", - "content-length" : "616", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "b40cc16f-8e7e-4311-a164-516a2d040c6b", + "content-length" : "636", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dafa6a9b-ab13-41ca-b718-77d4b1c55e3c" + "x-ms-correlation-request-id" : "f324143a-4bdb-4cfa-a82a-25861f077147" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047/providers/Microsoft.Cache/Redis/javacsmrc07419?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/patchSchedules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e717728d-8fb7-47d8-9aca-27cbb0eb9158?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180327T233830Z:44272411-6597-46c2-8f37-328f774737cf", - "date" : "Tue, 27 Mar 2018 23:38:30 GMT", + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc57085Third'.\\r\\nRequestID=53f2247e-bf39-44c8-a50a-f07c24819944\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180530T080800Z:b117ff5e-f112-409f-b1a1-1a08eb913253", + "x-ms-ratelimit-remaining-subscription-reads" : "14842", + "date" : "Wed, 30 May 2018 08:08:00 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e717728d-8fb7-47d8-9aca-27cbb0eb9158", - "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "53f2247e-bf39-44c8-a50a-f07c24819944", + "content-length" : "187", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "44272411-6597-46c2-8f37-328f774737cf" + "x-ms-correlation-request-id" : "b117ff5e-f112-409f-b1a1-1a08eb913253" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e717728d-8fb7-47d8-9aca-27cbb0eb9158?api-version=2018-03-01", + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e717728d-8fb7-47d8-9aca-27cbb0eb9158?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180327T233830Z:105ace11-6ff7-4174-a3f0-e461c1cad2c3", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", - "date" : "Tue, 27 Mar 2018 23:38:30 GMT", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080800Z:c4ec605f-6d2c-4330-8075-b6da98e262db", + "date" : "Wed, 30 May 2018 08:08:00 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "da187ae1-927d-470d-a7ee-8ecf78003afc", - "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "6fbf0cf9-f4b7-41b0-8fed-4e73cde75b40", + "content-length" : "643", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "105ace11-6ff7-4174-a3f0-e461c1cad2c3" + "x-ms-correlation-request-id" : "c4ec605f-6d2c-4330-8075-b6da98e262db" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e717728d-8fb7-47d8-9aca-27cbb0eb9158?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e717728d-8fb7-47d8-9aca-27cbb0eb9158?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180327T233900Z:e60067bf-5d26-4098-9387-ecd0aac56419", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", - "date" : "Tue, 27 Mar 2018 23:39:00 GMT", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080801Z:5ce48f7a-3778-4d87-9dce-559f126a36b4", + "x-ms-ratelimit-remaining-subscription-reads" : "14841", + "date" : "Wed, 30 May 2018 08:08:00 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "95bc0018-514a-43f9-aaa6-7c4d037a99c9", - "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "c0d2822f-da91-4a52-8e4e-9374b4de9ad0", + "content-length" : "643", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e60067bf-5d26-4098-9387-ecd0aac56419" + "x-ms-correlation-request-id" : "5ce48f7a-3778-4d87-9dce-559f126a36b4" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e717728d-8fb7-47d8-9aca-27cbb0eb9158?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e717728d-8fb7-47d8-9aca-27cbb0eb9158?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180327T233931Z:636fdef5-5e15-4081-8268-4d84eed2760c", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "date" : "Tue, 27 Mar 2018 23:39:30 GMT", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule2\",\"name\":\"javacsmrc57085Third/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/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule3\",\"name\":\"javacsmrc57085Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080801Z:15813305-c278-42b1-8790-aada4bade8a9", + "x-ms-ratelimit-remaining-subscription-reads" : "14840", + "date" : "Wed, 30 May 2018 08:08:00 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "1d52beb4-1aef-4eb5-a3ab-a2f6c84ac1ff", - "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "4a264f39-f7a6-4523-a0b1-f4a75ff6ace6", + "content-length" : "636", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "636fdef5-5e15-4081-8268-4d84eed2760c" + "x-ms-correlation-request-id" : "15813305-c278-42b1-8790-aada4bade8a9" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20Asia/operationresults/e717728d-8fb7-47d8-9aca-27cbb0eb9158?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/patchSchedules?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "Body" : "", - "x-ms-routing-request-id" : "WESTUS2:20180327T234002Z:4be89e3c-5165-4e7f-9b22-67256df6e947", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "date" : "Tue, 27 Mar 2018 23:40:01 GMT", + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc57085Third'.\\r\\nRequestID=2a53b220-4c72-4322-bab4-661d56c336c4\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180530T080801Z:b2ac3b8f-cda8-40e7-a503-a60575d41f6e", + "x-ms-ratelimit-remaining-subscription-reads" : "14839", + "date" : "Wed, 30 May 2018 08:08:00 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d8628133-d2db-47a3-bb03-adf0a708c391", - "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "2a53b220-4c72-4322-bab4-661d56c336c4", + "content-length" : "187", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4be89e3c-5165-4e7f-9b22-67256df6e947" + "x-ms-correlation-request-id" : "b2ac3b8f-cda8-40e7-a503-a60575d41f6e" } }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3892,27 +5726,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T234003Z:27e01425-9335-4ef9-94ec-bc8c511db15a", - "date" : "Tue, 27 Mar 2018 23:40:02 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080801Z:f74e074b-de95-4baf-8848-2a98447f2152", + "date" : "Wed, 30 May 2018 08:08:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c053d3e6-68a0-49ea-9a1c-93b147329a9f", + "x-ms-request-id" : "ce8dc929-3e8e-491f-861a-aecf3e35edbd", "content-length" : "643", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "27e01425-9335-4ef9-94ec-bc8c511db15a" + "x-ms-correlation-request-id" : "f74e074b-de95-4baf-8848-2a98447f2152" } }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third?api-version=2018-03-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/patchSchedules/default?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3920,27 +5754,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":1,\"maintenanceWindow\":\"PT5H\"},{\"dayOfWeek\":\"Tuesday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T234003Z:01cc9ee5-75d6-4762-ad53-4f381dafe139", - "date" : "Tue, 27 Mar 2018 23:40:02 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080801Z:6ce13d79-f1ec-4bae-9202-bdba3715e1c2", + "date" : "Wed, 30 May 2018 08:08:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "535ce539-819d-4cb5-854f-4d4d220b3b19", - "content-length" : "643", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "41be8318-5a24-4d38-b2ec-d1d85c7c6148", + "content-length" : "448", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "01cc9ee5-75d6-4762-ad53-4f381dafe139" + "x-ms-correlation-request-id" : "6ce13d79-f1ec-4bae-9202-bdba3715e1c2" } }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3948,27 +5782,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T234003Z:4fdfe597-9367-4d58-b84a-067c0fbf7a9a", - "date" : "Tue, 27 Mar 2018 23:40:02 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080801Z:c3c8832b-10bc-4ef2-b950-63f59d551ddc", + "x-ms-ratelimit-remaining-subscription-reads" : "14838", + "date" : "Wed, 30 May 2018 08:08:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "10425d6e-cfcb-45bb-a75e-6e4c9174de2f", + "x-ms-request-id" : "0effe275-6903-42e9-900a-fd78bb5444ea", "content-length" : "643", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4fdfe597-9367-4d58-b84a-067c0fbf7a9a" + "x-ms-correlation-request-id" : "c3c8832b-10bc-4ef2-b950-63f59d551ddc" } }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3976,27 +5810,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule2\",\"name\":\"javacsmrc57085Third/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/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule3\",\"name\":\"javacsmrc57085Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T234003Z:f1a6faff-b3b4-4dfe-86b1-7828b222a814", - "date" : "Tue, 27 Mar 2018 23:40:02 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080801Z:1ae32bb3-7fa6-46d2-911d-34dea091639a", + "x-ms-ratelimit-remaining-subscription-reads" : "14837", + "date" : "Wed, 30 May 2018 08:08:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "29c3b63d-3bc6-4b83-8a1b-e0b927299807", - "content-length" : "643", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "422c7131-b686-4af5-b785-ed7ffebc9845", + "content-length" : "636", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f1a6faff-b3b4-4dfe-86b1-7828b222a814" + "x-ms-correlation-request-id" : "1ae32bb3-7fa6-46d2-911d-34dea091639a" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third/patchSchedules/default?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/patchSchedules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -4004,27 +5838,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":1,\"maintenanceWindow\":\"PT5H\"},{\"dayOfWeek\":\"Tuesday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":1,\"maintenanceWindow\":\"PT5H\"},{\"dayOfWeek\":\"Tuesday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T234004Z:6f9b6a03-0896-415a-859b-1e4602fbe813", - "date" : "Tue, 27 Mar 2018 23:40:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080801Z:1b2db7b2-087f-4aea-8b24-aa47df47a4be", + "x-ms-ratelimit-remaining-subscription-reads" : "14836", + "date" : "Wed, 30 May 2018 08:08:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f35c7239-8eb5-4aed-8189-9d04aa8c49f5", - "content-length" : "448", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "2660e8bd-29f5-4341-8786-445fb5a97aab", + "content-length" : "460", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6f9b6a03-0896-415a-859b-1e4602fbe813" + "x-ms-correlation-request-id" : "1b2db7b2-087f-4aea-8b24-aa47df47a4be" } }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third/forceReboot?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/forceReboot?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -4033,79 +5867,77 @@ "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"message\": \"The requested reboot operation for 'AllNodes' has been successfully scheduled and should be executed shortly.\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T234009Z:3a847826-4720-49af-8a18-079f1ba0be49", - "date" : "Tue, 27 Mar 2018 23:40:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080806Z:4f0982d3-5e9a-4f82-81db-b41acf05b21f", + "date" : "Wed, 30 May 2018 08:08:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "9da3d5a2-3bdf-4b67-8742-418d2d525240", + "x-ms-request-id" : "1eb8f38a-1a36-45ef-94e2-26fd4bed12cf", "content-length" : "130", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a847826-4720-49af-8a18-079f1ba0be49" + "x-ms-correlation-request-id" : "4f0982d3-5e9a-4f82-81db-b41acf05b21f" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third/patchSchedules/default?api-version=2018-03-01", + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/patchSchedules/default?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":1,\"maintenanceWindow\":\"PT5H\"},{\"dayOfWeek\":\"Tuesday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T234009Z:24c15ff9-ad92-4f3c-888e-4ee9ceb71783", - "x-ms-ratelimit-remaining-subscription-reads" : "14880", - "date" : "Tue, 27 Mar 2018 23:40:09 GMT", - "vary" : "Accept-Encoding", + "Body" : "", + "x-ms-routing-request-id" : "WESTUS2:20180530T080806Z:ea43346f-20b7-41fa-8b43-092b33200ed4", + "date" : "Wed, 30 May 2018 08:08:05 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "48d3111e-1afc-431d-8969-2eeff02e83be", - "content-length" : "448", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "56fc7e8c-52c8-4242-b194-80afcc7b7019", + "content-length" : "0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "24c15ff9-ad92-4f3c-888e-4ee9ceb71783" + "x-ms-correlation-request-id" : "ea43346f-20b7-41fa-8b43-092b33200ed4", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third/patchSchedules/default?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/patchSchedules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "x-ms-routing-request-id" : "WESTUS2:20180327T234009Z:b3eb5dc3-6750-4b5a-8074-a69b001a0aa7", - "date" : "Tue, 27 Mar 2018 23:40:09 GMT", + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc57085Third'.\\r\\nRequestID=fbec9f69-95f0-47a8-92c1-7a8dffdf7fc3\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180530T080806Z:ce3cf4d0-ec3f-441b-acbb-0ecac8c442f9", + "x-ms-ratelimit-remaining-subscription-reads" : "14835", + "date" : "Wed, 30 May 2018 08:08:05 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "8cbb7152-5ac3-4dc4-a791-09db0a9528f0", - "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "fbec9f69-95f0-47a8-92c1-7a8dffdf7fc3", + "content-length" : "187", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b3eb5dc3-6750-4b5a-8074-a69b001a0aa7" + "x-ms-correlation-request-id" : "ce3cf4d0-ec3f-441b-acbb-0ecac8c442f9" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -4113,27 +5945,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third\",\"location\":\"Central US\",\"name\":\"javacsmrc07419Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc07419Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third\",\"location\":\"Central US\",\"name\":\"javacsmrc57085Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc57085Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180327T234009Z:c1ae9304-2adf-4f7d-9f30-c7f95d19b939", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "date" : "Tue, 27 Mar 2018 23:40:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180530T080806Z:9ca0f000-33c9-40ae-b25e-7c3575290de9", + "x-ms-ratelimit-remaining-subscription-reads" : "14834", + "date" : "Wed, 30 May 2018 08:08:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "6f341d23-fd75-4c26-b7d4-294851779e65", + "x-ms-request-id" : "d47e372c-64d7-4bcc-830b-ab34d124cccd", "content-length" : "643", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c1ae9304-2adf-4f7d-9f30-c7f95d19b939" + "x-ms-correlation-request-id" : "9ca0f000-33c9-40ae-b25e-7c3575290de9" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg87047Second/providers/Microsoft.Cache/Redis/javacsmrc07419Third/patchSchedules/default?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/patchSchedules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -4141,25 +5973,53 @@ "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc07419Third'.\\r\\nRequestID=dd7a6d11-b55a-4155-8151-8d60aac6063a\",\"target\":null}}", - "x-ms-routing-request-id" : "WESTUS2:20180327T234009Z:e4b174e2-01e4-428d-80f8-40847b07406b", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "date" : "Tue, 27 Mar 2018 23:40:09 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'javacsmrc57085Third'.\\r\\nRequestID=b04961f0-6451-420e-a746-cf7cbac29e63\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180530T080806Z:6b8bb083-0f6c-451a-ba96-5ef4852beb01", + "x-ms-ratelimit-remaining-subscription-reads" : "14833", + "date" : "Wed, 30 May 2018 08:08:05 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "dd7a6d11-b55a-4155-8151-8d60aac6063a", + "x-ms-request-id" : "b04961f0-6451-420e-a746-cf7cbac29e63", "content-length" : "187", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6b8bb083-0f6c-451a-ba96-5ef4852beb01" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule2\",\"name\":\"javacsmrc57085Third/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/javacsmrg76587Second/providers/Microsoft.Cache/Redis/javacsmrc57085Third/firewallRules/rule3\",\"name\":\"javacsmrc57085Third/rule3\",\"type\":\"Microsoft.Cache/Redis/firewallRules\",\"properties\":{\"startIP\":\"192.168.0.10\",\"endIP\":\"192.168.0.104\"}}]}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180530T080806Z:72c7af6f-46fb-4723-a3de-482ab80bfb33", + "x-ms-ratelimit-remaining-subscription-reads" : "14832", + "date" : "Wed, 30 May 2018 08:08:05 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "9ee90d4c-1d13-44de-8a7a-861ab8af1562", + "content-length" : "636", + "x-rp-server-mvid" : "efae0336-91a0-4a27-a7a1-e5388ca12fe3", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e4b174e2-01e4-428d-80f8-40847b07406b" + "x-ms-correlation-request-id" : "72c7af6f-46fb-4723-a3de-482ab80bfb33" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg87047?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg76587?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", "Content-Type" : "application/json; charset=utf-8" @@ -4167,114 +6027,114 @@ "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234012Z:2dfce7eb-c10d-4966-a698-e9edd0c44684", - "date" : "Tue, 27 Mar 2018 23:40:12 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T080809Z:ce6f09de-7343-4538-a42a-fc8354b93b1d", + "date" : "Wed, 30 May 2018 08:08:09 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2dfce7eb-c10d-4966-a698-e9edd0c44684", + "x-ms-request-id" : "ce6f09de-7343-4538-a42a-fc8354b93b1d", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2dfce7eb-c10d-4966-a698-e9edd0c44684" + "x-ms-correlation-request-id" : "ce6f09de-7343-4538-a42a-fc8354b93b1d", + "x-ms-ratelimit-remaining-subscription-deletes" : "14996" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234012Z:d9283c19-23f7-4240-bc5c-c3135a964a8b", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", - "date" : "Tue, 27 Mar 2018 23:40:12 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T080809Z:65da16ba-99c1-4974-945d-e4e42904c91b", + "x-ms-ratelimit-remaining-subscription-reads" : "14831", + "date" : "Wed, 30 May 2018 08:08:09 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d9283c19-23f7-4240-bc5c-c3135a964a8b", + "x-ms-request-id" : "65da16ba-99c1-4974-945d-e4e42904c91b", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d9283c19-23f7-4240-bc5c-c3135a964a8b" + "x-ms-correlation-request-id" : "65da16ba-99c1-4974-945d-e4e42904c91b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234028Z:947875b5-db49-4e9d-b420-63d6f9eb9fbc", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", - "date" : "Tue, 27 Mar 2018 23:40:27 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T080825Z:b5cfe1cc-d3c9-4bfb-9c5c-a9a1f83acf8e", + "x-ms-ratelimit-remaining-subscription-reads" : "14830", + "date" : "Wed, 30 May 2018 08:08:24 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "947875b5-db49-4e9d-b420-63d6f9eb9fbc", + "x-ms-request-id" : "b5cfe1cc-d3c9-4bfb-9c5c-a9a1f83acf8e", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "947875b5-db49-4e9d-b420-63d6f9eb9fbc" + "x-ms-correlation-request-id" : "b5cfe1cc-d3c9-4bfb-9c5c-a9a1f83acf8e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234043Z:50b216b0-5bcd-44cd-9b3d-82691e78367a", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "date" : "Tue, 27 Mar 2018 23:40:43 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T080840Z:d5fe0cd4-c50e-4888-84e9-d240d768cf42", + "x-ms-ratelimit-remaining-subscription-reads" : "14829", + "date" : "Wed, 30 May 2018 08:08:39 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "50b216b0-5bcd-44cd-9b3d-82691e78367a", + "x-ms-request-id" : "d5fe0cd4-c50e-4888-84e9-d240d768cf42", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "50b216b0-5bcd-44cd-9b3d-82691e78367a" + "x-ms-correlation-request-id" : "d5fe0cd4-c50e-4888-84e9-d240d768cf42" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4Ny1FQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoiZWFzdGFzaWEifQ?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "200", "Body" : "", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", - "x-ms-routing-request-id" : "WESTUS2:20180327T234058Z:6f60d83e-e540-4ef1-b8c8-02e5f1ee40cd", - "date" : "Tue, 27 Mar 2018 23:40:58 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "14828", + "x-ms-routing-request-id" : "WESTUS2:20180530T080855Z:f018b4bf-8ac5-43f1-8ca5-e1e65a31a3af", + "date" : "Wed, 30 May 2018 08:08:55 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "6f60d83e-e540-4ef1-b8c8-02e5f1ee40cd", + "x-ms-request-id" : "f018b4bf-8ac5-43f1-8ca5-e1e65a31a3af", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6f60d83e-e540-4ef1-b8c8-02e5f1ee40cd" + "x-ms-correlation-request-id" : "f018b4bf-8ac5-43f1-8ca5-e1e65a31a3af" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg87047Second?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg76587Second?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", "Content-Type" : "application/json; charset=utf-8" @@ -4282,295 +6142,295 @@ "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234059Z:fa768733-26f5-4112-8050-963358eb3c96", - "date" : "Tue, 27 Mar 2018 23:40:58 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T080856Z:b688116c-7187-44ad-88b6-27bc1f8e75ef", + "date" : "Wed, 30 May 2018 08:08:56 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "fa768733-26f5-4112-8050-963358eb3c96", + "x-ms-request-id" : "b688116c-7187-44ad-88b6-27bc1f8e75ef", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fa768733-26f5-4112-8050-963358eb3c96" + "x-ms-correlation-request-id" : "b688116c-7187-44ad-88b6-27bc1f8e75ef", + "x-ms-ratelimit-remaining-subscription-deletes" : "14995" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234059Z:ac533a9e-bbd8-4bb2-9ebb-2a6bfc75b5e7", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "date" : "Tue, 27 Mar 2018 23:40:58 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T080856Z:f473f281-d072-49ba-9ee9-16349f795e45", + "x-ms-ratelimit-remaining-subscription-reads" : "14827", + "date" : "Wed, 30 May 2018 08:08:56 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ac533a9e-bbd8-4bb2-9ebb-2a6bfc75b5e7", + "x-ms-request-id" : "f473f281-d072-49ba-9ee9-16349f795e45", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ac533a9e-bbd8-4bb2-9ebb-2a6bfc75b5e7" + "x-ms-correlation-request-id" : "f473f281-d072-49ba-9ee9-16349f795e45" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234114Z:ce1a0a91-897e-4e81-b7ab-8cbf10053d8d", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", - "date" : "Tue, 27 Mar 2018 23:41:14 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T080911Z:9d102668-c2ab-4e4a-b784-3cb38e3a87b1", + "x-ms-ratelimit-remaining-subscription-reads" : "14826", + "date" : "Wed, 30 May 2018 08:09:11 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ce1a0a91-897e-4e81-b7ab-8cbf10053d8d", + "x-ms-request-id" : "9d102668-c2ab-4e4a-b784-3cb38e3a87b1", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce1a0a91-897e-4e81-b7ab-8cbf10053d8d" + "x-ms-correlation-request-id" : "9d102668-c2ab-4e4a-b784-3cb38e3a87b1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234129Z:82492e5f-55cf-4549-a0e0-a9609d1aad8b", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", - "date" : "Tue, 27 Mar 2018 23:41:29 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T080926Z:8fd651ba-a2da-42d4-aa25-1574b572456e", + "x-ms-ratelimit-remaining-subscription-reads" : "14825", + "date" : "Wed, 30 May 2018 08:09:26 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "82492e5f-55cf-4549-a0e0-a9609d1aad8b", + "x-ms-request-id" : "8fd651ba-a2da-42d4-aa25-1574b572456e", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "82492e5f-55cf-4549-a0e0-a9609d1aad8b" + "x-ms-correlation-request-id" : "8fd651ba-a2da-42d4-aa25-1574b572456e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234145Z:cc3caf85-2bd9-4eeb-8724-27e43f56b937", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", - "date" : "Tue, 27 Mar 2018 23:41:45 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T080941Z:e9232905-160d-40d2-b70c-e37645c3e4ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14824", + "date" : "Wed, 30 May 2018 08:09:41 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "cc3caf85-2bd9-4eeb-8724-27e43f56b937", + "x-ms-request-id" : "e9232905-160d-40d2-b70c-e37645c3e4ed", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cc3caf85-2bd9-4eeb-8724-27e43f56b937" + "x-ms-correlation-request-id" : "e9232905-160d-40d2-b70c-e37645c3e4ed" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234200Z:ad18d049-8c05-4f3f-a260-cac268dc4ed9", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", - "date" : "Tue, 27 Mar 2018 23:41:59 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T080956Z:6fb663de-0e90-478c-aa61-e8ffb7156444", + "x-ms-ratelimit-remaining-subscription-reads" : "14823", + "date" : "Wed, 30 May 2018 08:09:56 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ad18d049-8c05-4f3f-a260-cac268dc4ed9", + "x-ms-request-id" : "6fb663de-0e90-478c-aa61-e8ffb7156444", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad18d049-8c05-4f3f-a260-cac268dc4ed9" + "x-ms-correlation-request-id" : "6fb663de-0e90-478c-aa61-e8ffb7156444" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234215Z:cd63cd57-effa-4896-bbcb-6fab1c88e4c6", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", - "date" : "Tue, 27 Mar 2018 23:42:14 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T081012Z:c38eaf1b-2656-4bb4-bdac-c1605d90d94f", + "x-ms-ratelimit-remaining-subscription-reads" : "14832", + "date" : "Wed, 30 May 2018 08:10:12 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "cd63cd57-effa-4896-bbcb-6fab1c88e4c6", + "x-ms-request-id" : "c38eaf1b-2656-4bb4-bdac-c1605d90d94f", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cd63cd57-effa-4896-bbcb-6fab1c88e4c6" + "x-ms-correlation-request-id" : "c38eaf1b-2656-4bb4-bdac-c1605d90d94f" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234230Z:23be3320-9b8e-4a82-86c0-118bc3745e55", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", - "date" : "Tue, 27 Mar 2018 23:42:29 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T081027Z:6f87528c-c3ff-43d2-a36a-99c79cce3d17", + "x-ms-ratelimit-remaining-subscription-reads" : "14831", + "date" : "Wed, 30 May 2018 08:10:26 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "23be3320-9b8e-4a82-86c0-118bc3745e55", + "x-ms-request-id" : "6f87528c-c3ff-43d2-a36a-99c79cce3d17", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23be3320-9b8e-4a82-86c0-118bc3745e55" + "x-ms-correlation-request-id" : "6f87528c-c3ff-43d2-a36a-99c79cce3d17" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234245Z:6dbf7a49-14d1-4086-8912-62c462b17245", - "x-ms-ratelimit-remaining-subscription-reads" : "14863", - "date" : "Tue, 27 Mar 2018 23:42:44 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T081042Z:7f7e9386-9bea-4585-adce-8d1aef136df5", + "x-ms-ratelimit-remaining-subscription-reads" : "14830", + "date" : "Wed, 30 May 2018 08:10:41 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "6dbf7a49-14d1-4086-8912-62c462b17245", + "x-ms-request-id" : "7f7e9386-9bea-4585-adce-8d1aef136df5", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6dbf7a49-14d1-4086-8912-62c462b17245" + "x-ms-correlation-request-id" : "7f7e9386-9bea-4585-adce-8d1aef136df5" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234300Z:0046f9f2-3c66-451e-9626-fa8e2c6f70ca", - "x-ms-ratelimit-remaining-subscription-reads" : "14862", - "date" : "Tue, 27 Mar 2018 23:43:00 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T081057Z:4ac05039-4d4b-447d-a016-2a84966d370d", + "x-ms-ratelimit-remaining-subscription-reads" : "14829", + "date" : "Wed, 30 May 2018 08:10:57 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0046f9f2-3c66-451e-9626-fa8e2c6f70ca", + "x-ms-request-id" : "4ac05039-4d4b-447d-a016-2a84966d370d", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0046f9f2-3c66-451e-9626-fa8e2c6f70ca" + "x-ms-correlation-request-id" : "4ac05039-4d4b-447d-a016-2a84966d370d" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234315Z:705801ca-e9de-4efa-a479-68c299b2f5df", - "x-ms-ratelimit-remaining-subscription-reads" : "14861", - "date" : "Tue, 27 Mar 2018 23:43:15 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T081112Z:7973f038-4fdc-4f35-b56e-31928cf43a49", + "x-ms-ratelimit-remaining-subscription-reads" : "14828", + "date" : "Wed, 30 May 2018 08:11:11 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "705801ca-e9de-4efa-a479-68c299b2f5df", + "x-ms-request-id" : "7973f038-4fdc-4f35-b56e-31928cf43a49", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "705801ca-e9de-4efa-a479-68c299b2f5df" + "x-ms-correlation-request-id" : "7973f038-4fdc-4f35-b56e-31928cf43a49" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180327T234330Z:5e79d604-3ceb-4fcf-895d-867c0ab55043", - "x-ms-ratelimit-remaining-subscription-reads" : "14860", - "date" : "Tue, 27 Mar 2018 23:43:29 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180530T081127Z:e6fa08fe-d0da-4a45-95a9-a29e45490c2a", + "x-ms-ratelimit-remaining-subscription-reads" : "14827", + "date" : "Wed, 30 May 2018 08:11:27 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "5e79d604-3ceb-4fcf-895d-867c0ab55043", + "x-ms-request-id" : "e6fa08fe-d0da-4a45-95a9-a29e45490c2a", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5e79d604-3ceb-4fcf-895d-867c0ab55043" + "x-ms-correlation-request-id" : "e6fa08fe-d0da-4a45-95a9-a29e45490c2a" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc4NzA0N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc3NjU4N1NFQ09ORC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "200", "Body" : "", - "x-ms-ratelimit-remaining-subscription-reads" : "14858", - "x-ms-routing-request-id" : "WESTUS2:20180327T234345Z:31d87675-8cda-4dfb-9c5c-fe6c4322435b", - "date" : "Tue, 27 Mar 2018 23:43:45 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "14826", + "x-ms-routing-request-id" : "WESTUS2:20180530T081142Z:53fdfd53-16bb-4b4b-bdf3-55680189664b", + "date" : "Wed, 30 May 2018 08:11:42 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "31d87675-8cda-4dfb-9c5c-fe6c4322435b", + "x-ms-request-id" : "53fdfd53-16bb-4b4b-bdf3-55680189664b", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "31d87675-8cda-4dfb-9c5c-fe6c4322435b" + "x-ms-correlation-request-id" : "53fdfd53-16bb-4b4b-bdf3-55680189664b" } } ], - "variables" : [ "javacsmrg87047", "javacsmrc07419", "javacsmsa72008", "a08b0725-68f7-4bf3-bc6b-5e9dec58322d", "35e65f2d-457a-455c-92f8-318f6e0af412", "5ff81b93-61cb-40f5-a64c-1c401ebd6ebb", "b40db518-b20c-42fa-848b-8c5203c22e32", "68a65393-7134-4400-af04-fa8b4766bd66", "52edab69-d4cd-4d45-bb1f-be026911092b", "9f9f82c6-1169-4131-a354-114fed63262a", "dfbad749-6a20-45ac-b0d6-5cfd594b3048", "bf4ed750-d75c-4a2f-9e1e-7270f5bd7b43", "ccea6ce8-6fe3-4d37-834f-792959fac62f", "eaa968f7-c65a-4367-85ca-d37b138dfeb5", "cae084a5-c188-426b-a8cc-4c2a5e44553e", "fe509c5b-ce11-47c0-9fdf-387947f67915", "833c092d-8c85-4b25-b00e-d4dc5f51f7ec", "5759b086-c6ec-4952-b0db-057c898c6fea" ] + "variables" : [ "javacsmrg76587", "javacsmrc57085", "javacsmsa01870", "bad6ea9c-35a9-4bf7-a523-8ec322a5ede8", "ab0d826c-e533-46ed-8ac1-57fcf158d927", "7eef197b-d38e-43a4-b056-099af06fd9c1", "456766e0-596a-4619-9652-5b4475cee3b1", "43bb1e83-1fd3-4d7d-8db4-2e70b4975d28", "65c3657c-e189-4178-8126-3368fcc25e5d", "b8fed758-ef5b-4de2-9ddb-4d87d904507c", "7970db5d-6a8f-41db-8f67-968c54b56552", "e8dbf34c-ccc3-49d8-b063-b701d5b6dd5f", "d14d7065-f4b5-4830-afd8-b47af0b49d33", "ec35f322-6695-4219-917f-c2c75fc1b90c", "db809a6f-6881-409a-85c2-a7c15b6ef77e", "342250ca-4c60-4c6c-b61f-f531efe69ec4", "9daf2963-cc5f-4026-95b5-dac3c7b9237a", "1a72f754-8414-4c88-b88f-9f895fa3d1e1", "0915ab1a-ba27-4493-9935-c2c799895e0a", "e34ddb03-d5e0-4930-945a-06b1d52a2722", "f4bfd639-0ddd-408d-a263-2cff75824db9", "6b083606-7f03-4e34-af80-6a805f98963b", "d4335e3e-7436-4924-90b3-a86b2ba6dd38", "e0e3cca2-494a-4e35-8ddb-833b6861ff67", "be7ef758-8fbd-4712-8256-1866570846dd", "2ce811fe-160e-456d-9ab7-12f94e2cbd02", "d78c8940-8805-421d-a457-e49089ee11f6", "f2e015bc-5ecb-47b8-92d8-ad4d45a5a314", "492d4011-3e73-4443-a134-a08a325b193a", "9ca67675-f715-4023-b18b-ca0213fbaa58", "90fdfd23-57af-4585-b42e-f01cf596847e", "226dc981-dab7-41f1-87d2-10067b773dac", "4119d520-e414-40b5-9298-49231f2f6a90", "3b5b9e6e-b7b7-4c07-8fd4-1bd10bff140d", "73ca00d1-356c-4e53-894c-3057bc76e5e6", "7afa3a23-4b11-4cf8-9228-892e69b9a109", "2d5180b8-26e8-4e97-8e09-7e08594569e5", "918ef95d-c06d-4719-be02-fd4d97d46ae4" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageRedisCache.json b/azure-samples/src/test/resources/session-records/testManageRedisCache.json index b793f7b2737..2619c94e134 100644 --- a/azure-samples/src/test/resources/session-records/testManageRedisCache.json +++ b/azure-samples/src/test/resources/session-records/testManageRedisCache.json @@ -1,7 +1,7 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrcmc1e2789135e66e97b?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrcmc510241183dc59749?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", "Content-Type" : "application/json; charset=utf-8" @@ -9,23 +9,23 @@ "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b\",\"name\":\"rgrcmc1e2789135e66e97b\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749\",\"name\":\"rgrcmc510241183dc59749\",\"location\":\"centralus\",\"tags\":{\"product\":\"javasdk\",\"cause\":\"automation\",\"date\":\"2018-06-19T07:19:25.854Z\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}", "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "x-ms-routing-request-id" : "WESTUS2:20180328T231730Z:0ea9ccf6-42b1-4b27-9468-33c981566ace", - "date" : "Wed, 28 Mar 2018 23:17:29 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T071927Z:26ad854e-d94d-4979-99e7-7976cbf29b24", + "date" : "Tue, 19 Jun 2018 07:19:26 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0ea9ccf6-42b1-4b27-9468-33c981566ace", - "content-length" : "200", + "x-ms-request-id" : "26ad854e-d94d-4979-99e7-7976cbf29b24", + "content-length" : "284", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0ea9ccf6-42b1-4b27-9468-33c981566ace" + "x-ms-correlation-request-id" : "26ad854e-d94d-4979-99e7-7976cbf29b24" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -33,1348 +33,1322 @@ "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":{\"primaryKey\":\"kLUlVxRwstEcENZy3lN9SPxxzirW2PGsuBmTCDVD1+o=\",\"secondaryKey\":\"QoSfx58SvqZqBBwM+ps4Zf/o9ae6rdukD4JAcG9fkNc=\"},\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":{\"primaryKey\":\"O+3ro1D5ZpKKAAS3pHqwJoybCClANKtx3M38vHty6OE=\",\"secondaryKey\":\"EwZKaYeAOpJkiZ0FEfj3LW9oM8KVQQKUq9UofFrM3Ac=\"},\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180328T231732Z:4d4e97a9-3505-4881-afad-5410d61688b5", - "date" : "Wed, 28 Mar 2018 23:17:31 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T071928Z:1be621dc-e75d-42e2-862f-aa00df84ba22", + "date" : "Tue, 19 Jun 2018 07:19:28 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "777f5801-39aa-4078-9d59-711ee9d0b5b1", - "content-length" : "782", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "83a1fe89-486f-4b0f-b0c1-784a6e11c9d2", + "content-length" : "758", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4d4e97a9-3505-4881-afad-5410d61688b5" + "x-ms-correlation-request-id" : "1be621dc-e75d-42e2-862f-aa00df84ba22" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T231732Z:31ed20f6-a0ce-48c4-b2c2-89fe4cb03afb", - "x-ms-ratelimit-remaining-subscription-reads" : "14997", - "date" : "Wed, 28 Mar 2018 23:17:31 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T071928Z:3c072e9a-e113-4493-9e3f-82830acc23f5", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "date" : "Tue, 19 Jun 2018 07:19:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e59ce4e1-27dd-439c-abcf-6c496988b581", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "13013f92-f78f-4f56-a3b3-7a5126b1018e", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "31ed20f6-a0ce-48c4-b2c2-89fe4cb03afb" + "x-ms-correlation-request-id" : "3c072e9a-e113-4493-9e3f-82830acc23f5" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T231802Z:9d190dd2-1133-423d-94b6-904d79840cc6", - "x-ms-ratelimit-remaining-subscription-reads" : "14996", - "date" : "Wed, 28 Mar 2018 23:18:01 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T071959Z:1cb08775-9e82-4ca6-8fcb-ba5f8b478aa0", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "date" : "Tue, 19 Jun 2018 07:19:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "15a01b87-0a99-480d-b9e2-a4d91fabfb4c", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d4d73bb5-d54d-4cb3-891d-64d9ba772a93", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9d190dd2-1133-423d-94b6-904d79840cc6" + "x-ms-correlation-request-id" : "1cb08775-9e82-4ca6-8fcb-ba5f8b478aa0" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T231832Z:117bb2f1-594c-4f8f-9ddb-e12ebd873200", - "x-ms-ratelimit-remaining-subscription-reads" : "14995", - "date" : "Wed, 28 Mar 2018 23:18:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072029Z:d7bebd75-1fab-46cc-8c3b-407446bfb719", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Tue, 19 Jun 2018 07:20:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "393f2521-c100-4fe5-93ae-3204dfd28b58", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "e00da8b5-069d-411d-8a14-eca0b24d3b5e", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "117bb2f1-594c-4f8f-9ddb-e12ebd873200" + "x-ms-correlation-request-id" : "d7bebd75-1fab-46cc-8c3b-407446bfb719" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T231902Z:a2ff8f53-eff4-462c-8e3b-a3d77e71818a", - "x-ms-ratelimit-remaining-subscription-reads" : "14994", - "date" : "Wed, 28 Mar 2018 23:19:01 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072059Z:44ce5c33-beab-4603-ba9e-38294eeffa55", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Tue, 19 Jun 2018 07:20:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d49814da-96e4-49ee-b5c1-ca9f15514120", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "5de44855-94d9-4e10-a35a-0279795216e0", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a2ff8f53-eff4-462c-8e3b-a3d77e71818a" + "x-ms-correlation-request-id" : "44ce5c33-beab-4603-ba9e-38294eeffa55" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T231932Z:6a54a735-005c-4f0a-851e-4bf4dde763c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14993", - "date" : "Wed, 28 Mar 2018 23:19:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072129Z:d35b6329-04a3-4df9-b390-d3d72ada4cf2", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Tue, 19 Jun 2018 07:21:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "58e7b8c9-cd6b-4c00-9848-ecbafdc6db7f", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "7d721e66-ef50-420b-8985-48460095c4aa", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6a54a735-005c-4f0a-851e-4bf4dde763c4" + "x-ms-correlation-request-id" : "d35b6329-04a3-4df9-b390-d3d72ada4cf2" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232002Z:fc2ef377-eff6-48e9-9b2d-18b737952e7b", - "x-ms-ratelimit-remaining-subscription-reads" : "14992", - "date" : "Wed, 28 Mar 2018 23:20:02 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072159Z:df5220d0-fcc7-4f50-95f4-06f170d0d596", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Tue, 19 Jun 2018 07:21:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "992db18f-287c-4806-80c6-466b98d22d1b", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "9cb07265-3c9e-4d7d-8668-26fc2593fe3c", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc2ef377-eff6-48e9-9b2d-18b737952e7b" + "x-ms-correlation-request-id" : "df5220d0-fcc7-4f50-95f4-06f170d0d596" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232032Z:fce40c44-2eef-465e-808c-70cee44d6b30", - "x-ms-ratelimit-remaining-subscription-reads" : "14991", - "date" : "Wed, 28 Mar 2018 23:20:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072229Z:2b15bb9c-30f1-47db-ab00-d8ad59849a01", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Tue, 19 Jun 2018 07:22:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e0e8a2b3-11b9-4791-96a6-5affff6fd45f", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "8c4b8ddc-4235-443b-89f2-e748b24fffd5", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fce40c44-2eef-465e-808c-70cee44d6b30" + "x-ms-correlation-request-id" : "2b15bb9c-30f1-47db-ab00-d8ad59849a01" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232103Z:6642714a-4e65-49b6-b496-2e9718613c07", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "date" : "Wed, 28 Mar 2018 23:21:02 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072259Z:3da55a66-3b77-49b2-8e15-712db10ea1ab", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Tue, 19 Jun 2018 07:22:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d7caeb00-3f62-480a-b885-5dca49012d47", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "01b14e6f-a4a5-4267-8849-2d999c67a875", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6642714a-4e65-49b6-b496-2e9718613c07" + "x-ms-correlation-request-id" : "3da55a66-3b77-49b2-8e15-712db10ea1ab" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232133Z:b8f216c9-2ef1-4585-9c8b-e1b2f0c18cb4", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "date" : "Wed, 28 Mar 2018 23:21:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072330Z:508131b9-f167-46f4-a8ec-ab08b966738b", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Tue, 19 Jun 2018 07:23:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "dfcea53f-c3b1-4a6a-a568-2bb094e5b00c", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "aae5aa16-ad68-4568-b68a-3e12e897b9c4", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b8f216c9-2ef1-4585-9c8b-e1b2f0c18cb4" + "x-ms-correlation-request-id" : "508131b9-f167-46f4-a8ec-ab08b966738b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232203Z:b88805bc-febc-4b5e-a13d-cb3ef109ce1b", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "date" : "Wed, 28 Mar 2018 23:22:02 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072400Z:a381e087-2627-4011-96d3-543fa97e3fc7", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "date" : "Tue, 19 Jun 2018 07:24:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "48c247a9-4b1a-478c-97c2-747a1ab99869", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "4997c0c6-1d52-4e5d-a2ba-cb30f953ff44", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b88805bc-febc-4b5e-a13d-cb3ef109ce1b" + "x-ms-correlation-request-id" : "a381e087-2627-4011-96d3-543fa97e3fc7" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232233Z:28169e0c-0446-4290-baf3-16948fcb85a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "date" : "Wed, 28 Mar 2018 23:22:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072430Z:9fc3e4ef-7ae6-4a7a-97a7-cf32bc86d53f", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "date" : "Tue, 19 Jun 2018 07:24:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "b7cedfff-15b6-4ee9-980f-23a9d0d2da5f", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "07569b17-80c8-457c-ab3b-f202fd0af5d0", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "28169e0c-0446-4290-baf3-16948fcb85a9" + "x-ms-correlation-request-id" : "9fc3e4ef-7ae6-4a7a-97a7-cf32bc86d53f" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232303Z:e22361ff-efdf-45f5-b127-b0107380a78d", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "date" : "Wed, 28 Mar 2018 23:23:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072500Z:663da39b-53e1-40ac-9c3c-4216bdf87a78", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "date" : "Tue, 19 Jun 2018 07:25:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a24de035-668c-49df-b69f-61294a529432", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "4e5049c1-ac51-408f-b452-b25115df5d47", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e22361ff-efdf-45f5-b127-b0107380a78d" + "x-ms-correlation-request-id" : "663da39b-53e1-40ac-9c3c-4216bdf87a78" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232333Z:ac6e4127-6154-400e-b388-75bb16664c61", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "date" : "Wed, 28 Mar 2018 23:23:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072531Z:9c6d71e0-9ba4-405f-aff7-d90228279a82", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "date" : "Tue, 19 Jun 2018 07:25:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d43d6c37-ac22-436d-a58e-20cf3e8d4833", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "98a2d986-d8bb-4251-a1af-01800febae9e", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ac6e4127-6154-400e-b388-75bb16664c61" + "x-ms-correlation-request-id" : "9c6d71e0-9ba4-405f-aff7-d90228279a82" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232403Z:5dea68b0-2542-4018-9828-b8f7be021dc6", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "date" : "Wed, 28 Mar 2018 23:24:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072601Z:594f2f46-5dfd-4297-84a4-3aad71b6426b", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Tue, 19 Jun 2018 07:26:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "3020aeb3-b7bf-478e-8846-7d9d65b9f606", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "b78c871a-5c86-4436-939f-1f6a756c20df", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5dea68b0-2542-4018-9828-b8f7be021dc6" + "x-ms-correlation-request-id" : "594f2f46-5dfd-4297-84a4-3aad71b6426b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232434Z:8b5af3fd-479a-42c7-a3e7-409f3282dd5a", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "date" : "Wed, 28 Mar 2018 23:24:33 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072631Z:f22877c7-6f39-409d-b966-f4a509593335", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "date" : "Tue, 19 Jun 2018 07:26:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f191e48a-8624-4758-ae01-c42488e6dcf0", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "94da81f9-010f-4515-8a78-8a23b2fcf8bf", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b5af3fd-479a-42c7-a3e7-409f3282dd5a" + "x-ms-correlation-request-id" : "f22877c7-6f39-409d-b966-f4a509593335" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232504Z:530c22a1-afcd-4771-9b32-67dec2ccf584", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "date" : "Wed, 28 Mar 2018 23:25:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072701Z:71c006ab-cb1c-443b-a3c4-08d3b6e7d674", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "date" : "Tue, 19 Jun 2018 07:27:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "cf9b349d-2e9e-476e-9b32-4067c6171fe8", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "ba7c8907-7544-449e-b2d6-0901858c6754", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "530c22a1-afcd-4771-9b32-67dec2ccf584" + "x-ms-correlation-request-id" : "71c006ab-cb1c-443b-a3c4-08d3b6e7d674" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232534Z:c0494c87-0fb2-48ac-8306-4db0e9bd9852", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "date" : "Wed, 28 Mar 2018 23:25:33 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072731Z:a0df6da9-12f8-4711-b429-eaeb14910494", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "date" : "Tue, 19 Jun 2018 07:27:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d46887cc-57e8-4d0f-bdab-1ff93771c53e", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "ebd45ab5-70ea-403b-8fb8-e3280a3a3739", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0494c87-0fb2-48ac-8306-4db0e9bd9852" + "x-ms-correlation-request-id" : "a0df6da9-12f8-4711-b429-eaeb14910494" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232604Z:85dff9df-5081-4529-ae26-caf20361116c", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "date" : "Wed, 28 Mar 2018 23:26:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072801Z:173798dd-9f8c-44d6-9f38-2570a46b6851", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "date" : "Tue, 19 Jun 2018 07:28:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "42ba15e2-09e3-4da7-aeef-ad7dad68affc", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "1b1f01fb-217e-4542-adc8-27c5f8e5e9e4", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "85dff9df-5081-4529-ae26-caf20361116c" + "x-ms-correlation-request-id" : "173798dd-9f8c-44d6-9f38-2570a46b6851" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232634Z:d302c4d6-c506-4493-9403-2ea623c03226", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "date" : "Wed, 28 Mar 2018 23:26:34 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072831Z:2c2245b6-04d1-41b1-8c6a-e0910d03916b", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Tue, 19 Jun 2018 07:28:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "dd832498-a655-493c-9f78-6a60d40d742c", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "25339644-fb68-4480-b211-57317a3b3a86", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d302c4d6-c506-4493-9403-2ea623c03226" + "x-ms-correlation-request-id" : "2c2245b6-04d1-41b1-8c6a-e0910d03916b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232704Z:37f59b22-c55c-4fa9-b864-4320aeb08a12", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "date" : "Wed, 28 Mar 2018 23:27:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072902Z:8a2094c6-4a74-4bba-93b4-fd78e68c531e", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Tue, 19 Jun 2018 07:29:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e28cf281-6a07-4509-a2a8-ccc9b7b4c917", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "6ebcd180-f5fe-46eb-ba1b-12ce34833368", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "37f59b22-c55c-4fa9-b864-4320aeb08a12" + "x-ms-correlation-request-id" : "8a2094c6-4a74-4bba-93b4-fd78e68c531e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232734Z:5287ab2d-21de-4a14-9b3a-47add4d7eabe", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "date" : "Wed, 28 Mar 2018 23:27:33 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T072932Z:069a3071-6609-4075-886e-7a4ff4323beb", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "date" : "Tue, 19 Jun 2018 07:29:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "13f34779-c106-49f3-8a74-36dcdcb145b8", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "70974bfa-f8ba-4e9e-adca-3b2ff372e3c5", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5287ab2d-21de-4a14-9b3a-47add4d7eabe" + "x-ms-correlation-request-id" : "069a3071-6609-4075-886e-7a4ff4323beb" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232804Z:5cfb56e2-9ca0-4485-8b99-d321ad63eb9d", - "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "date" : "Wed, 28 Mar 2018 23:28:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T073002Z:99afcbbb-8038-462c-abb0-5907539d53c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "date" : "Tue, 19 Jun 2018 07:30:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "82430916-f540-45ef-ae2a-d9d1b27787c4", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "7f0de465-ec4b-404d-a3ac-c06634c815d7", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5cfb56e2-9ca0-4485-8b99-d321ad63eb9d" + "x-ms-correlation-request-id" : "99afcbbb-8038-462c-abb0-5907539d53c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232834Z:ce35db7e-54d9-406f-88d5-344661d72cba", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "date" : "Wed, 28 Mar 2018 23:28:34 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T073032Z:cb0c4c54-7c96-4751-b742-1fb048b4d939", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "date" : "Tue, 19 Jun 2018 07:30:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "aa993bd5-33b7-47a4-a43f-14994327a587", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "2879abe5-639a-410d-9f92-eb94bbed4313", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce35db7e-54d9-406f-88d5-344661d72cba" + "x-ms-correlation-request-id" : "cb0c4c54-7c96-4751-b742-1fb048b4d939" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232904Z:3421748f-8a54-43b7-aef0-3c8e1ddb5f2b", - "x-ms-ratelimit-remaining-subscription-reads" : "14974", - "date" : "Wed, 28 Mar 2018 23:29:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T073102Z:4ee14b97-3465-4348-89c7-a73916d93105", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "date" : "Tue, 19 Jun 2018 07:31:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "4776c3bc-cb1e-44b6-8f31-aa146dbb30b1", - "content-length" : "664", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "597dc5b0-1a98-4d35-b8d1-176069c050f3", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3421748f-8a54-43b7-aef0-3c8e1ddb5f2b" + "x-ms-correlation-request-id" : "4ee14b97-3465-4348-89c7-a73916d93105" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrcmc1e2789135e66e97b?api-version=2017-05-10", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b\",\"name\":\"rgrcmc1e2789135e66e97b\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232906Z:3a865bbd-d051-4b9b-a165-4e05e0de3a26", - "date" : "Wed, 28 Mar 2018 23:29:05 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T073132Z:99cab597-35d5-4fd0-81f9-4288602d80f5", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "date" : "Tue, 19 Jun 2018 07:31:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "3a865bbd-d051-4b9b-a165-4e05e0de3a26", - "content-length" : "200", + "x-ms-request-id" : "2061dc9f-d464-4447-9c20-0724c15534cb", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a865bbd-d051-4b9b-a165-4e05e0de3a26" + "x-ms-correlation-request-id" : "99cab597-35d5-4fd0-81f9-4288602d80f5" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":{\"primaryKey\":\"Bk6sEc9rM9caXJ/66t8t29yxzq/ysoPH8lwNb4J0eBc=\",\"secondaryKey\":\"sTJ6Vz6al/HsepOrhf9vnuv2D74TBTGw/FmgKg2ytyQ=\"},\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180328T232907Z:93e857d4-8333-41cb-8ae0-29a046920dd4", - "date" : "Wed, 28 Mar 2018 23:29:06 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T073203Z:de4782ad-5afb-4fb2-92b0-7f59d92c9a05", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "date" : "Tue, 19 Jun 2018 07:32:02 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0aee3695-91d0-4f9d-82e3-f5345fc3b87a", - "content-length" : "781", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "3c4a84cc-0d2a-4356-8288-28dce74b0676", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "93e857d4-8333-41cb-8ae0-29a046920dd4" + "x-ms-correlation-request-id" : "de4782ad-5afb-4fb2-92b0-7f59d92c9a05" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232907Z:3a60c156-6813-4023-9fdd-97cad261a329", + "x-ms-routing-request-id" : "WESTUS2:20180619T073233Z:35ff6227-1774-4abe-b9a0-e62ae1df327a", "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "date" : "Wed, 28 Mar 2018 23:29:07 GMT", + "date" : "Tue, 19 Jun 2018 07:32:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "754bc0a9-3255-4661-aefc-0227d785af79", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "e0d6a0ab-d9b8-45b9-81f2-ef4cfc4817fe", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a60c156-6813-4023-9fdd-97cad261a329" + "x-ms-correlation-request-id" : "35ff6227-1774-4abe-b9a0-e62ae1df327a" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T232938Z:2365d8af-f3f3-4019-b4ac-458000752196", + "x-ms-routing-request-id" : "WESTUS2:20180619T073303Z:23d10a6a-1053-4a25-94c8-c2e0ae08bdab", "x-ms-ratelimit-remaining-subscription-reads" : "14972", - "date" : "Wed, 28 Mar 2018 23:29:37 GMT", + "date" : "Tue, 19 Jun 2018 07:33:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "5242cbc9-43a5-4503-9963-71c088b97b03", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "2f049706-8d0b-4e4a-a066-3717f9f8ea88", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2365d8af-f3f3-4019-b4ac-458000752196" + "x-ms-correlation-request-id" : "23d10a6a-1053-4a25-94c8-c2e0ae08bdab" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233008Z:06b6ebf9-018f-456a-95aa-71894c316137", + "x-ms-routing-request-id" : "WESTUS2:20180619T073333Z:069ed6f0-1614-4235-a0e4-1c066c5af0b3", "x-ms-ratelimit-remaining-subscription-reads" : "14971", - "date" : "Wed, 28 Mar 2018 23:30:07 GMT", + "date" : "Tue, 19 Jun 2018 07:33:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c96293d5-9b58-471e-9833-e15ee28e2f7a", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "108e8a12-d1a1-434c-9310-532abadb6329", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "06b6ebf9-018f-456a-95aa-71894c316137" + "x-ms-correlation-request-id" : "069ed6f0-1614-4235-a0e4-1c066c5af0b3" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233038Z:d3d9c5c5-1bcd-481b-bc13-16900c747f9e", + "x-ms-routing-request-id" : "WESTUS2:20180619T073403Z:c77a7f0c-3514-40a1-a742-32806a47b0f3", "x-ms-ratelimit-remaining-subscription-reads" : "14970", - "date" : "Wed, 28 Mar 2018 23:30:37 GMT", + "date" : "Tue, 19 Jun 2018 07:34:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c89aeddb-05c7-446b-8610-4be2a79a2bd4", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "80479e4a-ac4b-4313-984c-0c5421962ae7", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d3d9c5c5-1bcd-481b-bc13-16900c747f9e" + "x-ms-correlation-request-id" : "c77a7f0c-3514-40a1-a742-32806a47b0f3" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233108Z:5b6ffea2-0992-4770-9f8b-5330f949b893", + "x-ms-routing-request-id" : "WESTUS2:20180619T073433Z:d0e07aa4-71e6-4e3c-99f2-03484f903772", "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "date" : "Wed, 28 Mar 2018 23:31:08 GMT", + "date" : "Tue, 19 Jun 2018 07:34:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "80ade755-078d-47cb-94ad-25c5031accb8", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "1d247f40-d456-4af7-af0b-11c787ac75f5", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5b6ffea2-0992-4770-9f8b-5330f949b893" + "x-ms-correlation-request-id" : "d0e07aa4-71e6-4e3c-99f2-03484f903772" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233139Z:ac215281-761d-4ae9-b0b2-6dbdcf53b15e", + "x-ms-routing-request-id" : "WESTUS2:20180619T073504Z:75125754-e187-46a4-a22b-a868f2a6ea2e", "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "date" : "Wed, 28 Mar 2018 23:31:38 GMT", + "date" : "Tue, 19 Jun 2018 07:35:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0b499655-0c05-464c-a132-df137ef50636", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "bf60c6d3-fe88-4828-bcab-871007e52b2a", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ac215281-761d-4ae9-b0b2-6dbdcf53b15e" + "x-ms-correlation-request-id" : "75125754-e187-46a4-a22b-a868f2a6ea2e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233209Z:557f34d4-b64d-4010-a763-1cfcac954840", + "x-ms-routing-request-id" : "WESTUS2:20180619T073534Z:aa412b37-cfb6-40f2-811f-afca9674e5e4", "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "date" : "Wed, 28 Mar 2018 23:32:08 GMT", + "date" : "Tue, 19 Jun 2018 07:35:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f523aa06-0bc0-4c16-a22a-1aefc98146b7", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d4361812-e199-4384-81b9-63cc8c234e71", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "557f34d4-b64d-4010-a763-1cfcac954840" + "x-ms-correlation-request-id" : "aa412b37-cfb6-40f2-811f-afca9674e5e4" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233239Z:fb7f33db-8b7d-4642-8d48-a99a0256a058", + "x-ms-routing-request-id" : "WESTUS2:20180619T073605Z:20a77ed2-25cd-4778-bf71-5e9a8e5a68b4", "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "date" : "Wed, 28 Mar 2018 23:32:38 GMT", + "date" : "Tue, 19 Jun 2018 07:36:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "4d4b4945-8f05-4f1e-83b2-fa23e881daf4", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "2eaa1048-842d-4347-a428-eeba525d6958", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb7f33db-8b7d-4642-8d48-a99a0256a058" + "x-ms-correlation-request-id" : "20a77ed2-25cd-4778-bf71-5e9a8e5a68b4" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233309Z:70c5bfb3-90b7-410d-b8a7-674f9a6e2fcb", + "x-ms-routing-request-id" : "WESTUS2:20180619T073635Z:1bf74395-19dd-45b0-91fa-ae0b6254bd4d", "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "date" : "Wed, 28 Mar 2018 23:33:09 GMT", + "date" : "Tue, 19 Jun 2018 07:36:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "19d80f44-8063-4f5e-a38a-3a374b09e7ef", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "f2e63423-9e09-4e62-a07b-bc095b54d294", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "70c5bfb3-90b7-410d-b8a7-674f9a6e2fcb" + "x-ms-correlation-request-id" : "1bf74395-19dd-45b0-91fa-ae0b6254bd4d" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233339Z:e0ed92be-755f-4a2b-8a47-4ff1fdb62cbf", + "x-ms-routing-request-id" : "WESTUS2:20180619T073705Z:0e29dd35-54ad-4b26-9c19-b23de42c0d89", "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "date" : "Wed, 28 Mar 2018 23:33:39 GMT", + "date" : "Tue, 19 Jun 2018 07:37:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f51e4898-cf27-4c85-89a4-b2933b0ba464", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "75d48a9d-aad0-41ff-babe-c089e36815d4", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e0ed92be-755f-4a2b-8a47-4ff1fdb62cbf" + "x-ms-correlation-request-id" : "0e29dd35-54ad-4b26-9c19-b23de42c0d89" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233409Z:15c29f5b-676c-4dbb-8498-f1b44ab755b7", + "x-ms-routing-request-id" : "WESTUS2:20180619T073735Z:61c4c815-198f-441c-88ad-b8701d97b1aa", "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "date" : "Wed, 28 Mar 2018 23:34:09 GMT", + "date" : "Tue, 19 Jun 2018 07:37:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "55bf9a6c-c134-4192-bbf7-cc24135b6c74", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "84bff2e8-fcdf-4693-a668-5866488b5815", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "15c29f5b-676c-4dbb-8498-f1b44ab755b7" + "x-ms-correlation-request-id" : "61c4c815-198f-441c-88ad-b8701d97b1aa" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233440Z:fc2e39f4-1aa4-43c4-9489-1a62fe802812", + "x-ms-routing-request-id" : "WESTUS2:20180619T073805Z:c78ce33f-81cf-402b-850d-1bb672260d21", "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "date" : "Wed, 28 Mar 2018 23:34:39 GMT", + "date" : "Tue, 19 Jun 2018 07:38:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d1d88834-8da9-437f-9947-217cea6aa0d2", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "8ca97151-eddd-455a-b2f5-00aeadf7cc9d", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc2e39f4-1aa4-43c4-9489-1a62fe802812" + "x-ms-correlation-request-id" : "c78ce33f-81cf-402b-850d-1bb672260d21" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233510Z:02602bb3-7f6b-4e9a-8112-145062c537fb", + "x-ms-routing-request-id" : "WESTUS2:20180619T073836Z:3a96538e-ec83-40b9-8a56-1d0fcc7d5709", "x-ms-ratelimit-remaining-subscription-reads" : "14961", - "date" : "Wed, 28 Mar 2018 23:35:09 GMT", + "date" : "Tue, 19 Jun 2018 07:38:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c1bc2a4e-196f-48ed-ba06-6301f5ad0b0f", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "e8f35cd7-601c-4725-b07b-ed95a65b0f42", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "02602bb3-7f6b-4e9a-8112-145062c537fb" + "x-ms-correlation-request-id" : "3a96538e-ec83-40b9-8a56-1d0fcc7d5709" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233540Z:58744fee-b25a-4c16-a91a-ba9d091522f2", + "x-ms-routing-request-id" : "WESTUS2:20180619T073906Z:8908a997-8cc6-468d-ad63-8b3928a5f00d", "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "date" : "Wed, 28 Mar 2018 23:35:40 GMT", + "date" : "Tue, 19 Jun 2018 07:39:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "00d01de3-ebd6-46fa-bb10-5af355288b5e", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "9f4d4f5d-0512-411c-81e1-0a1cdf919f65", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "58744fee-b25a-4c16-a91a-ba9d091522f2" + "x-ms-correlation-request-id" : "8908a997-8cc6-468d-ad63-8b3928a5f00d" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233610Z:40af216f-cc4d-4f2b-8dfb-b7ea470eccbf", + "x-ms-routing-request-id" : "WESTUS2:20180619T073936Z:968d455d-6f88-42d7-9a6f-31a5832f5fbb", "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "date" : "Wed, 28 Mar 2018 23:36:10 GMT", + "date" : "Tue, 19 Jun 2018 07:39:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0fbab296-af0f-486b-b90d-cd6dda04918e", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "bc3309ba-7a7b-464d-a835-03906ed376bc", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "40af216f-cc4d-4f2b-8dfb-b7ea470eccbf" + "x-ms-correlation-request-id" : "968d455d-6f88-42d7-9a6f-31a5832f5fbb" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233640Z:8a49b1ba-2592-4c78-ac15-17f1d532d41a", + "x-ms-routing-request-id" : "WESTUS2:20180619T074006Z:869950e8-9787-4154-8eb8-892a21491b8e", "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "date" : "Wed, 28 Mar 2018 23:36:40 GMT", + "date" : "Tue, 19 Jun 2018 07:40:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "35ae9382-61bb-474a-8d76-6c1e9dd4ab35", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "5d71cd76-846c-405d-a083-9ba4b5542e33", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8a49b1ba-2592-4c78-ac15-17f1d532d41a" + "x-ms-correlation-request-id" : "869950e8-9787-4154-8eb8-892a21491b8e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233710Z:549a6613-ec41-4ed7-a175-fbec68476346", + "x-ms-routing-request-id" : "WESTUS2:20180619T074036Z:380ad0ca-9d12-4a68-b81d-e2af8b01b20b", "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "date" : "Wed, 28 Mar 2018 23:37:10 GMT", + "date" : "Tue, 19 Jun 2018 07:40:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0162b1df-6f99-4d02-8cfe-fa40bb326061", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d33b68c6-9c24-4ca9-90ba-26e7df17a947", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "549a6613-ec41-4ed7-a175-fbec68476346" + "x-ms-correlation-request-id" : "380ad0ca-9d12-4a68-b81d-e2af8b01b20b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233740Z:fcd237c3-a167-417e-ac5d-bd8bbeb00499", + "x-ms-routing-request-id" : "WESTUS2:20180619T074107Z:76d7f0c2-f922-4447-92f4-e43d2e465e6c", "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "date" : "Wed, 28 Mar 2018 23:37:40 GMT", + "date" : "Tue, 19 Jun 2018 07:41:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "23cf333b-4844-4826-aaf6-280d4e42235d", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "91b2ae96-76ec-491b-91ca-ef45a9361a14", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fcd237c3-a167-417e-ac5d-bd8bbeb00499" + "x-ms-correlation-request-id" : "76d7f0c2-f922-4447-92f4-e43d2e465e6c" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233810Z:223fe164-b9f2-4796-9bc5-b71f1e402fda", + "x-ms-routing-request-id" : "WESTUS2:20180619T074137Z:e52ead67-dbdd-4e42-85cb-3b79e6f0d4d1", "x-ms-ratelimit-remaining-subscription-reads" : "14955", - "date" : "Wed, 28 Mar 2018 23:38:10 GMT", + "date" : "Tue, 19 Jun 2018 07:41:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e707fc87-7d4d-426a-af2e-ff2939c8cc50", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "81a73de9-cb11-41f9-a6e2-683bb1d05a9d", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "223fe164-b9f2-4796-9bc5-b71f1e402fda" + "x-ms-correlation-request-id" : "e52ead67-dbdd-4e42-85cb-3b79e6f0d4d1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233841Z:c976986e-db0e-4a43-a6bb-f6d088debb89", + "x-ms-routing-request-id" : "WESTUS2:20180619T074207Z:e4dde4f4-d3b3-4ed3-a907-068b9aa8fd5a", "x-ms-ratelimit-remaining-subscription-reads" : "14954", - "date" : "Wed, 28 Mar 2018 23:38:40 GMT", + "date" : "Tue, 19 Jun 2018 07:42:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "3a03dbe2-4e67-44b5-9fd3-6ada5df68123", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "08282bcd-9cda-4527-b334-bfeb6aeac1d6", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c976986e-db0e-4a43-a6bb-f6d088debb89" + "x-ms-correlation-request-id" : "e4dde4f4-d3b3-4ed3-a907-068b9aa8fd5a" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233911Z:58fbc434-28d5-43bc-9b50-19a33fdb351a", + "x-ms-routing-request-id" : "WESTUS2:20180619T074237Z:178693b2-ee7f-4773-9567-99559684d91c", "x-ms-ratelimit-remaining-subscription-reads" : "14953", - "date" : "Wed, 28 Mar 2018 23:39:10 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "x-content-type-options" : "nosniff", - "expires" : "-1", - "x-ms-request-id" : "b5bea56f-5f57-4599-af05-fa045857c786", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "58fbc434-28d5-43bc-9b50-19a33fdb351a" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T233941Z:218e3c72-7615-4872-9200-f19b4f9329da", - "x-ms-ratelimit-remaining-subscription-reads" : "14952", - "date" : "Wed, 28 Mar 2018 23:39:40 GMT", + "date" : "Tue, 19 Jun 2018 07:42:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "4cf82f01-3466-40d1-9e09-7ba1d86af172", - "content-length" : "662", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "ae5b4d38-9077-4ba2-ac99-9d6ce9c0b00f", + "content-length" : "639", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "218e3c72-7615-4872-9200-f19b4f9329da" + "x-ms-correlation-request-id" : "178693b2-ee7f-4773-9567-99559684d91c" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc15106506697eb83265?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234011Z:5febeb4a-d334-44e9-a47e-c16b412e04f0", + "x-ms-routing-request-id" : "WESTUS2:20180619T074307Z:d0d835b1-8f19-4bef-8625-ee3034e15105", "x-ms-ratelimit-remaining-subscription-reads" : "14952", - "date" : "Wed, 28 Mar 2018 23:40:10 GMT", + "date" : "Tue, 19 Jun 2018 07:43:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "54cd3de3-9315-480e-b8d6-67f649486052", - "content-length" : "663", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d507c475-a256-4043-8ef4-9a95c291408f", + "content-length" : "640", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5febeb4a-d334-44e9-a47e-c16b412e04f0" + "x-ms-correlation-request-id" : "d0d835b1-8f19-4bef-8625-ee3034e15105" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrcmc1e2789135e66e97b?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrcmc510241183dc59749?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", "Content-Type" : "application/json; charset=utf-8" @@ -1382,25 +1356,25 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b\",\"name\":\"rgrcmc1e2789135e66e97b\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749\",\"name\":\"rgrcmc510241183dc59749\",\"location\":\"centralus\",\"tags\":{\"product\":\"javasdk\",\"cause\":\"automation\",\"date\":\"2018-06-19T07:43:08.035Z\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234012Z:b40dcaa2-6c22-420e-bd20-588c0ce02792", - "date" : "Wed, 28 Mar 2018 23:40:12 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T074308Z:72fec483-b53d-4d84-b68a-4b6157fd37ab", + "date" : "Tue, 19 Jun 2018 07:43:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "b40dcaa2-6c22-420e-bd20-588c0ce02792", - "content-length" : "200", + "x-ms-request-id" : "72fec483-b53d-4d84-b68a-4b6157fd37ab", + "content-length" : "284", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b40dcaa2-6c22-420e-bd20-588c0ce02792" + "x-ms-correlation-request-id" : "72fec483-b53d-4d84-b68a-4b6157fd37ab" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1408,1438 +1382,1429 @@ "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":{\"primaryKey\":\"o+GE9OyvSyimLaC2ifVoTlPkWai/pS5sRBUSv9fQA9Q=\",\"secondaryKey\":\"o39xkAr7Aozsa5GWdIDH4jLqaCl+fzwN0ywKLbM4DIs=\"},\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180328T234014Z:62cf4c82-3db3-4030-936e-8d9a456e2988", - "date" : "Wed, 28 Mar 2018 23:40:13 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":{\"primaryKey\":\"FUqgG3YRVjWMZi7sbuTVqxio9xU3NpOUFcBDpZZYudw=\",\"secondaryKey\":\"7areYBG6V3fdBECKq1dO4Ys3VO08UyX61rV95ZNrY1c=\"},\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T074310Z:f16e2448-9b94-47ad-b675-95d4dc800b77", + "date" : "Tue, 19 Jun 2018 07:43:09 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "72a007fe-dd59-4b14-8362-eaee25f00e27", - "content-length" : "758", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "aec019c9-f410-4d28-84f3-a446b24ced09", + "content-length" : "781", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "62cf4c82-3db3-4030-936e-8d9a456e2988" + "x-ms-correlation-request-id" : "f16e2448-9b94-47ad-b675-95d4dc800b77" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234014Z:f82a910a-c61b-4ece-a0d6-1b50ee1484b9", + "x-ms-routing-request-id" : "WESTUS2:20180619T074310Z:8e88ee03-09df-4fe1-9be2-31e4d0a4a693", "x-ms-ratelimit-remaining-subscription-reads" : "14951", - "date" : "Wed, 28 Mar 2018 23:40:13 GMT", + "date" : "Tue, 19 Jun 2018 07:43:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2873462a-eaf3-449c-a2b0-8a411d74768f", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "219cda43-63c2-47c0-9dbd-00c257b04b52", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f82a910a-c61b-4ece-a0d6-1b50ee1484b9" + "x-ms-correlation-request-id" : "8e88ee03-09df-4fe1-9be2-31e4d0a4a693" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234044Z:5ec320d9-3fc5-427a-ad57-4ebdbc559e64", + "x-ms-routing-request-id" : "WESTUS2:20180619T074341Z:b4b3bcd6-ed9f-47bc-bd33-4c7cb06e4757", "x-ms-ratelimit-remaining-subscription-reads" : "14950", - "date" : "Wed, 28 Mar 2018 23:40:43 GMT", + "date" : "Tue, 19 Jun 2018 07:43:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "9daaac09-6fb6-4963-bc98-a15f0edef4eb", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "049cf5db-6264-42ef-850d-595161642220", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5ec320d9-3fc5-427a-ad57-4ebdbc559e64" + "x-ms-correlation-request-id" : "b4b3bcd6-ed9f-47bc-bd33-4c7cb06e4757" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234114Z:96888002-49a6-450c-a093-71616e49f3ab", + "x-ms-routing-request-id" : "WESTUS2:20180619T074411Z:ab54dc91-6f06-4c90-8586-aa5ab837781b", "x-ms-ratelimit-remaining-subscription-reads" : "14949", - "date" : "Wed, 28 Mar 2018 23:41:14 GMT", + "date" : "Tue, 19 Jun 2018 07:44:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f85a2fd1-6999-405b-88df-1c8c58e89ad5", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "664234c3-dfd7-4f39-a557-b56dbcc0930e", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "96888002-49a6-450c-a093-71616e49f3ab" + "x-ms-correlation-request-id" : "ab54dc91-6f06-4c90-8586-aa5ab837781b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234144Z:467fdbf8-2a20-4f58-9212-181af7bc1f7a", + "x-ms-routing-request-id" : "WESTUS2:20180619T074441Z:945b3b2f-ef38-43cc-992a-390ee68a8fbe", "x-ms-ratelimit-remaining-subscription-reads" : "14948", - "date" : "Wed, 28 Mar 2018 23:41:44 GMT", + "date" : "Tue, 19 Jun 2018 07:44:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "247e7ead-0b9a-4aca-a590-f3b958d749f5", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "662ec0e4-c0ef-408c-b870-5cae4997d583", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "467fdbf8-2a20-4f58-9212-181af7bc1f7a" + "x-ms-correlation-request-id" : "945b3b2f-ef38-43cc-992a-390ee68a8fbe" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234215Z:f403b181-7f7d-4d93-971e-d2594fe87cc0", + "x-ms-routing-request-id" : "WESTUS2:20180619T074511Z:f718515c-ff5d-4c4a-a111-54c24c356d52", "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "date" : "Wed, 28 Mar 2018 23:42:14 GMT", + "date" : "Tue, 19 Jun 2018 07:45:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "64e95cf2-f86a-497c-813d-bdd7f39502a5", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "15978919-7780-40a3-a182-e99c62190cf4", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f403b181-7f7d-4d93-971e-d2594fe87cc0" + "x-ms-correlation-request-id" : "f718515c-ff5d-4c4a-a111-54c24c356d52" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234245Z:5ffb7c16-df5e-4a80-8551-fd56c963ad3e", + "x-ms-routing-request-id" : "WESTUS2:20180619T074541Z:d0a68fac-9641-46e0-a3b7-d428dd6408fd", "x-ms-ratelimit-remaining-subscription-reads" : "14946", - "date" : "Wed, 28 Mar 2018 23:42:44 GMT", + "date" : "Tue, 19 Jun 2018 07:45:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "303a14c1-cfba-461c-912c-832092a74380", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "a753b20f-1e28-48c9-9415-53b2f9bd92c1", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5ffb7c16-df5e-4a80-8551-fd56c963ad3e" + "x-ms-correlation-request-id" : "d0a68fac-9641-46e0-a3b7-d428dd6408fd" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234315Z:f9d1cc23-3997-4c56-98e1-370db091a303", + "x-ms-routing-request-id" : "WESTUS2:20180619T074611Z:db6b8a14-3aa3-4dab-a236-49fee9413632", "x-ms-ratelimit-remaining-subscription-reads" : "14945", - "date" : "Wed, 28 Mar 2018 23:43:15 GMT", + "date" : "Tue, 19 Jun 2018 07:46:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ca298c98-8d98-471c-9c26-7ea69b57a387", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "387832bc-6351-4c54-83ab-1597fd6ade27", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f9d1cc23-3997-4c56-98e1-370db091a303" + "x-ms-correlation-request-id" : "db6b8a14-3aa3-4dab-a236-49fee9413632" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234345Z:fdff3be9-8a21-4c51-91d0-8fc767e91de5", + "x-ms-routing-request-id" : "WESTUS2:20180619T074642Z:24f093ca-36dc-42fa-bac0-7f67bc5d6ed1", "x-ms-ratelimit-remaining-subscription-reads" : "14944", - "date" : "Wed, 28 Mar 2018 23:43:44 GMT", + "date" : "Tue, 19 Jun 2018 07:46:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "25dbfc92-fc02-4ab0-8547-a1c30aab5121", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "0a7ef502-21f8-4de1-b27e-3f0aad0f660c", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fdff3be9-8a21-4c51-91d0-8fc767e91de5" + "x-ms-correlation-request-id" : "24f093ca-36dc-42fa-bac0-7f67bc5d6ed1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234415Z:729f3be3-b403-4a69-ac2a-d0b0645779e8", + "x-ms-routing-request-id" : "WESTUS2:20180619T074712Z:98f535f9-b967-401b-ae79-2fce1fe87220", "x-ms-ratelimit-remaining-subscription-reads" : "14943", - "date" : "Wed, 28 Mar 2018 23:44:15 GMT", + "date" : "Tue, 19 Jun 2018 07:47:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "15b87af4-0baa-40fb-804e-fea495768e3a", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "4f95eec5-5937-46a2-b62e-964dafbf8aa3", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "729f3be3-b403-4a69-ac2a-d0b0645779e8" + "x-ms-correlation-request-id" : "98f535f9-b967-401b-ae79-2fce1fe87220" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234446Z:70fe16ff-4f37-4b0c-a383-8ffe00b96cdf", + "x-ms-routing-request-id" : "WESTUS2:20180619T074742Z:03b0d335-e5b9-4714-94eb-62fafac8e12e", "x-ms-ratelimit-remaining-subscription-reads" : "14942", - "date" : "Wed, 28 Mar 2018 23:44:46 GMT", + "date" : "Tue, 19 Jun 2018 07:47:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "824ab439-0f52-425b-8db7-89d36804d5c8", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "14423fc7-d0a7-49a6-ba71-092884e54ff5", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "70fe16ff-4f37-4b0c-a383-8ffe00b96cdf" + "x-ms-correlation-request-id" : "03b0d335-e5b9-4714-94eb-62fafac8e12e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234516Z:9c12a990-6920-4275-b3d9-b70375bf1a08", + "x-ms-routing-request-id" : "WESTUS2:20180619T074812Z:6eba0858-8481-4dd1-bc0b-9ba0d923115e", "x-ms-ratelimit-remaining-subscription-reads" : "14941", - "date" : "Wed, 28 Mar 2018 23:45:15 GMT", + "date" : "Tue, 19 Jun 2018 07:48:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "3cf510f6-46da-46a9-8965-72c7568281e3", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "2ef7d564-c8c6-4509-8610-479af1fa3096", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c12a990-6920-4275-b3d9-b70375bf1a08" + "x-ms-correlation-request-id" : "6eba0858-8481-4dd1-bc0b-9ba0d923115e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234546Z:5a278304-1523-440a-a251-c4fbd6a6172a", + "x-ms-routing-request-id" : "WESTUS2:20180619T074842Z:6693f0c9-fb43-494f-b178-ebc61423e672", "x-ms-ratelimit-remaining-subscription-reads" : "14940", - "date" : "Wed, 28 Mar 2018 23:45:45 GMT", + "date" : "Tue, 19 Jun 2018 07:48:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "8680bbba-4681-40b9-b3ca-a129c6805e15", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "1bab0d68-cb3d-4fbb-899a-d2fb14d51463", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5a278304-1523-440a-a251-c4fbd6a6172a" + "x-ms-correlation-request-id" : "6693f0c9-fb43-494f-b178-ebc61423e672" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234616Z:1592145c-0396-416b-98df-e59df16f1ebc", + "x-ms-routing-request-id" : "WESTUS2:20180619T074913Z:84795681-c7e9-47d4-a729-24e268374964", "x-ms-ratelimit-remaining-subscription-reads" : "14939", - "date" : "Wed, 28 Mar 2018 23:46:15 GMT", + "date" : "Tue, 19 Jun 2018 07:49:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a90f7626-bd31-4baf-8a94-c70c49e5d176", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "ed6d1007-19b4-4d87-8cc4-4be4727a311f", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1592145c-0396-416b-98df-e59df16f1ebc" + "x-ms-correlation-request-id" : "84795681-c7e9-47d4-a729-24e268374964" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234646Z:950da516-8b52-4fe5-b0f1-b8ed00a40830", + "x-ms-routing-request-id" : "WESTUS2:20180619T074943Z:9096bcf0-fa8e-4c15-a50a-4b08b36521d5", "x-ms-ratelimit-remaining-subscription-reads" : "14938", - "date" : "Wed, 28 Mar 2018 23:46:46 GMT", + "date" : "Tue, 19 Jun 2018 07:49:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e36ce599-b603-431b-bd27-51c017f7f1de", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "8bc1bac1-a841-4e61-a49d-7456b6e6df8c", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "950da516-8b52-4fe5-b0f1-b8ed00a40830" + "x-ms-correlation-request-id" : "9096bcf0-fa8e-4c15-a50a-4b08b36521d5" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234716Z:b00555d6-70db-4159-8bd2-7ddb76087762", + "x-ms-routing-request-id" : "WESTUS2:20180619T075013Z:86beeaea-1798-4402-b894-4a7e1a7a87df", "x-ms-ratelimit-remaining-subscription-reads" : "14937", - "date" : "Wed, 28 Mar 2018 23:47:16 GMT", + "date" : "Tue, 19 Jun 2018 07:50:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "07f640b7-0738-458f-a63f-706e0ba344ec", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "159c3a0c-b49b-438a-9d91-a751adc24d02", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b00555d6-70db-4159-8bd2-7ddb76087762" + "x-ms-correlation-request-id" : "86beeaea-1798-4402-b894-4a7e1a7a87df" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234746Z:abbd20f7-6d60-4d1f-afd6-5e0000103604", + "x-ms-routing-request-id" : "WESTUS2:20180619T075043Z:940cbe37-b98f-4d04-a575-88b37e0fd294", "x-ms-ratelimit-remaining-subscription-reads" : "14936", - "date" : "Wed, 28 Mar 2018 23:47:46 GMT", + "date" : "Tue, 19 Jun 2018 07:50:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "5e05389d-5fd5-49a3-bbd0-d0929e15162f", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "86c59c54-c559-47bd-be5b-9b3cdaf48807", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "abbd20f7-6d60-4d1f-afd6-5e0000103604" + "x-ms-correlation-request-id" : "940cbe37-b98f-4d04-a575-88b37e0fd294" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234817Z:7afdf505-6903-407f-adac-5c778d59de58", + "x-ms-routing-request-id" : "WESTUS2:20180619T075113Z:a823a1c1-68c9-4e8e-a32d-c03144bbf0f4", "x-ms-ratelimit-remaining-subscription-reads" : "14935", - "date" : "Wed, 28 Mar 2018 23:48:16 GMT", + "date" : "Tue, 19 Jun 2018 07:51:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "065f4868-2a6f-471c-91ef-0f542a7c0dfd", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "b676a9e4-a7b6-41f2-923a-90fd0eee28d3", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7afdf505-6903-407f-adac-5c778d59de58" + "x-ms-correlation-request-id" : "a823a1c1-68c9-4e8e-a32d-c03144bbf0f4" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234847Z:d6b1d59f-bc4c-485c-adfd-8b3e8d4441f3", + "x-ms-routing-request-id" : "WESTUS2:20180619T075144Z:9ae18509-31e3-4e16-b1e5-ea336946ae96", "x-ms-ratelimit-remaining-subscription-reads" : "14934", - "date" : "Wed, 28 Mar 2018 23:48:46 GMT", + "date" : "Tue, 19 Jun 2018 07:51:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "b1baf7fc-a6dd-49d4-ae9f-9530ac674f35", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "9932cb95-9b8f-4de4-beeb-83af5331a4ba", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d6b1d59f-bc4c-485c-adfd-8b3e8d4441f3" + "x-ms-correlation-request-id" : "9ae18509-31e3-4e16-b1e5-ea336946ae96" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234917Z:1f0ff7b8-7fea-4e1f-971b-b52732586cd1", + "x-ms-routing-request-id" : "WESTUS2:20180619T075214Z:1162e6c5-d147-4cb5-b17a-1f972bdab08b", "x-ms-ratelimit-remaining-subscription-reads" : "14933", - "date" : "Wed, 28 Mar 2018 23:49:17 GMT", + "date" : "Tue, 19 Jun 2018 07:52:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d6075f9e-61ce-442b-b4d8-b77affff2f29", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "7594399e-8d7e-430b-9c7a-400b64ddd98d", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1f0ff7b8-7fea-4e1f-971b-b52732586cd1" + "x-ms-correlation-request-id" : "1162e6c5-d147-4cb5-b17a-1f972bdab08b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T234947Z:d6eef2f8-8df1-4107-8b78-0c7aa22491d4", + "x-ms-routing-request-id" : "WESTUS2:20180619T075244Z:c89a9590-d071-4adc-b0b6-6ed03825f0cd", "x-ms-ratelimit-remaining-subscription-reads" : "14932", - "date" : "Wed, 28 Mar 2018 23:49:46 GMT", + "date" : "Tue, 19 Jun 2018 07:52:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "1f59ece5-fe76-4568-8831-f85b29620656", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "ee11ced7-caf0-4513-827a-48093f0133f6", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d6eef2f8-8df1-4107-8b78-0c7aa22491d4" + "x-ms-correlation-request-id" : "c89a9590-d071-4adc-b0b6-6ed03825f0cd" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235017Z:48a0590d-7c1c-4b9a-bd65-2b7270ff279b", + "x-ms-routing-request-id" : "WESTUS2:20180619T075314Z:4d45f1dd-9ab1-4a5f-83d3-8c39d874e239", "x-ms-ratelimit-remaining-subscription-reads" : "14931", - "date" : "Wed, 28 Mar 2018 23:50:17 GMT", + "date" : "Tue, 19 Jun 2018 07:53:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e2672ade-11ea-4056-b790-8d4ed467128d", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "38808e35-095f-4d05-82af-d84925be4fb1", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "48a0590d-7c1c-4b9a-bd65-2b7270ff279b" + "x-ms-correlation-request-id" : "4d45f1dd-9ab1-4a5f-83d3-8c39d874e239" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235047Z:9d2ff340-5190-4c5d-a76a-d42bf98c84cf", + "x-ms-routing-request-id" : "WESTUS2:20180619T075344Z:ee58ca09-cd3b-4359-826e-191b03a8d0ef", "x-ms-ratelimit-remaining-subscription-reads" : "14930", - "date" : "Wed, 28 Mar 2018 23:50:46 GMT", + "date" : "Tue, 19 Jun 2018 07:53:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "72da92d2-3a43-4e78-af13-ec464d005902", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "5029df05-03ad-464d-83b4-30d222a8c37f", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9d2ff340-5190-4c5d-a76a-d42bf98c84cf" + "x-ms-correlation-request-id" : "ee58ca09-cd3b-4359-826e-191b03a8d0ef" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235117Z:d39ee558-ad1f-4dc2-af7f-92764dc507a3", + "x-ms-routing-request-id" : "WESTUS2:20180619T075414Z:eedd9bb5-086a-4beb-a35d-52299dcc38fd", "x-ms-ratelimit-remaining-subscription-reads" : "14929", - "date" : "Wed, 28 Mar 2018 23:51:17 GMT", + "date" : "Tue, 19 Jun 2018 07:54:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ab859145-95f4-485b-8915-a3100bf5a2a1", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "3f25dde7-3d86-487b-bb7c-2dc227757824", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d39ee558-ad1f-4dc2-af7f-92764dc507a3" + "x-ms-correlation-request-id" : "eedd9bb5-086a-4beb-a35d-52299dcc38fd" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235147Z:56770e1d-2384-4a92-9c9e-3ef1bcea6ce1", + "x-ms-routing-request-id" : "WESTUS2:20180619T075444Z:2c27256b-d838-4e54-9621-ee62d6f3d223", "x-ms-ratelimit-remaining-subscription-reads" : "14928", - "date" : "Wed, 28 Mar 2018 23:51:46 GMT", + "date" : "Tue, 19 Jun 2018 07:54:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "19c77a0d-785d-47cb-8ca8-76d09a7aed91", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "91358387-7685-4408-b844-90d63dfaf761", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "56770e1d-2384-4a92-9c9e-3ef1bcea6ce1" + "x-ms-correlation-request-id" : "2c27256b-d838-4e54-9621-ee62d6f3d223" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235217Z:3392241c-c326-44f3-8e02-d12aa7bcad34", + "x-ms-routing-request-id" : "WESTUS2:20180619T075515Z:9e24fc35-a7a3-4c7d-9f02-ab05e4d613bd", "x-ms-ratelimit-remaining-subscription-reads" : "14927", - "date" : "Wed, 28 Mar 2018 23:52:17 GMT", + "date" : "Tue, 19 Jun 2018 07:55:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "b219fd67-5906-454d-914b-97a6a3eb9734", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "41fb6058-841c-4360-8094-0a58a9371d9d", + "content-length" : "662", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3392241c-c326-44f3-8e02-d12aa7bcad34" + "x-ms-correlation-request-id" : "9e24fc35-a7a3-4c7d-9f02-ab05e4d613bd" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235248Z:99c53fd9-372d-4d21-b411-905d13ae743a", + "x-ms-routing-request-id" : "WESTUS2:20180619T075545Z:46671d78-56a4-4fc3-90ec-3376d7c7c164", "x-ms-ratelimit-remaining-subscription-reads" : "14926", - "date" : "Wed, 28 Mar 2018 23:52:47 GMT", + "date" : "Tue, 19 Jun 2018 07:55:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "6fbbcf3a-f6ce-4557-969e-7e69cff84da4", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "29f0b596-6539-44e2-9f39-545dca61279b", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "99c53fd9-372d-4d21-b411-905d13ae743a" + "x-ms-correlation-request-id" : "46671d78-56a4-4fc3-90ec-3376d7c7c164" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrcmc510241183dc59749?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749\",\"name\":\"rgrcmc510241183dc59749\",\"location\":\"centralus\",\"tags\":{\"product\":\"javasdk\",\"cause\":\"automation\",\"date\":\"2018-06-19T07:55:45.578Z\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235318Z:6ddeee45-d5db-4cd1-a6b0-56f122403d92", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "date" : "Wed, 28 Mar 2018 23:53:17 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T075546Z:c3a08e0b-d102-4b4b-b599-f09666e14a22", + "date" : "Tue, 19 Jun 2018 07:55:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "148617c2-02fe-4273-abd3-0dbeeac342a7", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "c3a08e0b-d102-4b4b-b599-f09666e14a22", + "content-length" : "284", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6ddeee45-d5db-4cd1-a6b0-56f122403d92" + "x-ms-correlation-request-id" : "c3a08e0b-d102-4b4b-b599-f09666e14a22" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235348Z:4e8e38d8-e007-41c0-b3e5-3085d394b96d", - "x-ms-ratelimit-remaining-subscription-reads" : "14924", - "date" : "Wed, 28 Mar 2018 23:53:48 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":{\"primaryKey\":\"cNeBJgJ7p5sDSo8zO2aHHTrIqW7bBZ97eSLPxCF4XQI=\",\"secondaryKey\":\"HbpVvzSYSEUkYSCjL1FDJbAMvBgkLpTHVqXIvfSYw5E=\"},\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T075547Z:c4d3ebb5-1019-4c3e-a619-e10d63f0645d", + "date" : "Tue, 19 Jun 2018 07:55:47 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "346e6832-5537-47cf-929f-d98c80f17caa", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "cd7b1579-7d44-4dd3-9610-c32fcce27a95", + "content-length" : "782", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4e8e38d8-e007-41c0-b3e5-3085d394b96d" + "x-ms-correlation-request-id" : "c4d3ebb5-1019-4c3e-a619-e10d63f0645d" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235418Z:7fcccdea-2e6e-48d9-87b7-c81aef494bca", - "x-ms-ratelimit-remaining-subscription-reads" : "14923", - "date" : "Wed, 28 Mar 2018 23:54:17 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T075547Z:45dbc832-a9c7-4905-83c9-c009261d4b63", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "date" : "Tue, 19 Jun 2018 07:55:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "072bbbaa-2fe9-4edd-94da-5409b53f36f0", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d8ed08d7-2070-4ee3-8487-35e462ac08aa", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7fcccdea-2e6e-48d9-87b7-c81aef494bca" + "x-ms-correlation-request-id" : "45dbc832-a9c7-4905-83c9-c009261d4b63" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235449Z:3cac173f-2b7a-410a-8214-8d665457de37", - "x-ms-ratelimit-remaining-subscription-reads" : "14922", - "date" : "Wed, 28 Mar 2018 23:54:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T075617Z:969804de-548c-49ab-8777-e654a71ae3ba", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "date" : "Tue, 19 Jun 2018 07:56:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "6e54e104-d254-4fdb-be13-b2cd96025c50", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "9a6342c8-1c26-4a75-a698-2c76ed71e4c7", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3cac173f-2b7a-410a-8214-8d665457de37" + "x-ms-correlation-request-id" : "969804de-548c-49ab-8777-e654a71ae3ba" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235519Z:ca6629a4-3a53-458b-a478-27a7800d4381", - "x-ms-ratelimit-remaining-subscription-reads" : "14921", - "date" : "Wed, 28 Mar 2018 23:55:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T075647Z:5e161b97-0fc2-45d9-af8f-593b7b3b0300", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "date" : "Tue, 19 Jun 2018 07:56:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "993f0beb-3de3-48aa-b39e-430bc5495d9a", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d998e2e1-6282-4a4d-add9-5e97833bf90d", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca6629a4-3a53-458b-a478-27a7800d4381" + "x-ms-correlation-request-id" : "5e161b97-0fc2-45d9-af8f-593b7b3b0300" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235549Z:ab125f7c-e265-4e97-9716-da5ee08088e3", - "x-ms-ratelimit-remaining-subscription-reads" : "14920", - "date" : "Wed, 28 Mar 2018 23:55:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T075718Z:8ac6fa6c-03e0-4368-b3f4-2fc4dcd68fae", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "date" : "Tue, 19 Jun 2018 07:57:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "78b65845-190e-46c5-a535-e80feb00551c", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "cce353f0-42fb-475a-bd91-8f89e1e0e2ba", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ab125f7c-e265-4e97-9716-da5ee08088e3" + "x-ms-correlation-request-id" : "8ac6fa6c-03e0-4368-b3f4-2fc4dcd68fae" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235619Z:a9db6b24-22cc-4382-9e09-c0fa67d31a17", - "x-ms-ratelimit-remaining-subscription-reads" : "14919", - "date" : "Wed, 28 Mar 2018 23:56:18 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T075748Z:1a6ca126-73be-4c6f-9f30-08687de8066d", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "date" : "Tue, 19 Jun 2018 07:57:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "73511b22-b603-4ad8-9715-0bc4b7c1f530", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "27ef9f33-9a64-47de-ae17-99a171dca0f4", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a9db6b24-22cc-4382-9e09-c0fa67d31a17" + "x-ms-correlation-request-id" : "1a6ca126-73be-4c6f-9f30-08687de8066d" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235649Z:41c549a1-bc43-42b9-a78f-e0fff3ed902e", - "x-ms-ratelimit-remaining-subscription-reads" : "14918", - "date" : "Wed, 28 Mar 2018 23:56:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T075818Z:c7fef7b5-d125-4d2a-861b-5a5d6a6f2efa", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "date" : "Tue, 19 Jun 2018 07:58:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "bd2fbcab-5ffd-4e64-9635-2ec5fbff0dac", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "4525a60a-e964-4d5a-b809-68e4d4de29d1", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "41c549a1-bc43-42b9-a78f-e0fff3ed902e" + "x-ms-correlation-request-id" : "c7fef7b5-d125-4d2a-861b-5a5d6a6f2efa" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235719Z:f3598441-1cb9-4185-b80d-6bcc75e32ab3", - "x-ms-ratelimit-remaining-subscription-reads" : "14917", - "date" : "Wed, 28 Mar 2018 23:57:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T075848Z:00dc86eb-b971-47ef-be2e-e3abf8df9d31", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", + "date" : "Tue, 19 Jun 2018 07:58:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "017df99d-3987-4a2b-a713-682067f001a2", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "51212792-d693-40ec-9807-09964c25386b", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f3598441-1cb9-4185-b80d-6bcc75e32ab3" + "x-ms-correlation-request-id" : "00dc86eb-b971-47ef-be2e-e3abf8df9d31" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235749Z:7bc9e171-40a4-45b7-ad94-6970d132ad44", - "x-ms-ratelimit-remaining-subscription-reads" : "14916", - "date" : "Wed, 28 Mar 2018 23:57:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T075918Z:d113fa62-80e6-43d8-9463-5cfca67b632b", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", + "date" : "Tue, 19 Jun 2018 07:59:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "21c18009-b1c6-4456-8093-36646e80229c", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d57cf354-cc47-44da-b6cd-b73e8648cf46", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7bc9e171-40a4-45b7-ad94-6970d132ad44" + "x-ms-correlation-request-id" : "d113fa62-80e6-43d8-9463-5cfca67b632b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235819Z:811bb350-6d17-4373-98fc-c17238f1fa6e", - "x-ms-ratelimit-remaining-subscription-reads" : "14914", - "date" : "Wed, 28 Mar 2018 23:58:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T075948Z:4ead4750-74f6-49b1-89c4-3a4d37a311d4", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", + "date" : "Tue, 19 Jun 2018 07:59:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "7882f9bf-1017-4ffe-b936-5074cb0081b4", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "b777f557-0630-4aa6-b361-7052058baae1", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "811bb350-6d17-4373-98fc-c17238f1fa6e" + "x-ms-correlation-request-id" : "4ead4750-74f6-49b1-89c4-3a4d37a311d4" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235850Z:95597059-963c-48ee-8c2f-07db3b2db723", - "x-ms-ratelimit-remaining-subscription-reads" : "14913", - "date" : "Wed, 28 Mar 2018 23:58:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080018Z:a5a9d202-11be-4ea3-8cb3-6b756def8cd0", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", + "date" : "Tue, 19 Jun 2018 08:00:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "893584e0-d856-454c-ab6d-050790aded85", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "3f074608-fae2-480f-933c-33424deae090", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "95597059-963c-48ee-8c2f-07db3b2db723" + "x-ms-correlation-request-id" : "a5a9d202-11be-4ea3-8cb3-6b756def8cd0" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235920Z:2c0f397d-beb1-4afd-b3b6-126e78d9d0c5", - "x-ms-ratelimit-remaining-subscription-reads" : "14912", - "date" : "Wed, 28 Mar 2018 23:59:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080049Z:f3746567-7dd9-43ff-b8d7-10f91e9cb4ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", + "date" : "Tue, 19 Jun 2018 08:00:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "9687c417-a381-4dcb-abac-a0949020bd1d", - "content-length" : "639", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d924a0e3-32f0-4c56-80eb-841620d4fe45", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2c0f397d-beb1-4afd-b3b6-126e78d9d0c5" + "x-ms-correlation-request-id" : "f3746567-7dd9-43ff-b8d7-10f91e9cb4ed" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235950Z:3121d47b-1d22-43a3-aab8-85fe106abac5", - "x-ms-ratelimit-remaining-subscription-reads" : "14911", - "date" : "Wed, 28 Mar 2018 23:59:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080119Z:c8363221-8925-4790-a5d3-b10171817d79", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", + "date" : "Tue, 19 Jun 2018 08:01:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "fd0777b1-6300-4461-98ff-4c7e732faeb4", - "content-length" : "640", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "71cdf111-5094-4c5d-b07e-834841d8c9d8", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3121d47b-1d22-43a3-aab8-85fe106abac5" + "x-ms-correlation-request-id" : "c8363221-8925-4790-a5d3-b10171817d79" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0/patchSchedules/default?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { - "StatusCode" : "404", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'rc30eb308943479866c0'.\\r\\nRequestID=aa88e8ac-0ab2-40fc-8796-a5fc897b8130\",\"target\":null}}", - "x-ms-routing-request-id" : "WESTUS2:20180328T235950Z:9e660fb9-dfb6-455a-86f4-1eac7655bfd4", - "x-ms-ratelimit-remaining-subscription-reads" : "14910", - "date" : "Wed, 28 Mar 2018 23:59:49 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T080149Z:16486711-236d-4467-b278-9e10a7d2e8d6", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", + "date" : "Tue, 19 Jun 2018 08:01:48 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "aa88e8ac-0ab2-40fc-8796-a5fc897b8130", - "content-length" : "188", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "cc8bd95f-62cd-4cfe-9cf0-2006fcb6eb21", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9e660fb9-dfb6-455a-86f4-1eac7655bfd4" + "x-ms-correlation-request-id" : "16486711-236d-4467-b278-9e10a7d2e8d6" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6/patchSchedules/default?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { - "StatusCode" : "404", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'rc2b1e41311caedf60e6'.\\r\\nRequestID=1696d27f-e236-4f0a-b416-5e976ca9ed80\",\"target\":null}}", - "x-ms-routing-request-id" : "WESTUS2:20180328T235950Z:9f3431eb-93bd-4201-9f0d-92acc7d98681", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", - "date" : "Wed, 28 Mar 2018 23:59:49 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T080219Z:d50b277f-6bed-4c72-99a2-8194c070bd0c", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "date" : "Tue, 19 Jun 2018 08:02:19 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "1696d27f-e236-4f0a-b416-5e976ca9ed80", - "content-length" : "188", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "1b9acc01-9c86-4be1-b2ab-8191942cac08", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9f3431eb-93bd-4201-9f0d-92acc7d98681" + "x-ms-correlation-request-id" : "d50b277f-6bed-4c72-99a2-8194c070bd0c" } }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47/listKeys?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"primaryKey\":\"o+GE9OyvSyimLaC2ifVoTlPkWai/pS5sRBUSv9fQA9Q=\",\"secondaryKey\":\"o39xkAr7Aozsa5GWdIDH4jLqaCl+fzwN0ywKLbM4DIs=\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235950Z:41cb41e3-d4fa-4467-96ac-b3dd21c93733", - "date" : "Wed, 28 Mar 2018 23:59:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080249Z:d0ed35b8-871a-4938-8978-9d4b83ccec54", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "date" : "Tue, 19 Jun 2018 08:02:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "68725547-4de4-4ac9-a005-5f881783d732", - "content-length" : "123", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "f1c4f443-4564-458c-9c6f-b78b85cbaf6a", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "41cb41e3-d4fa-4467-96ac-b3dd21c93733" + "x-ms-correlation-request-id" : "d0ed35b8-871a-4938-8978-9d4b83ccec54" } }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47/regenerateKey?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"primaryKey\":\"o+GE9OyvSyimLaC2ifVoTlPkWai/pS5sRBUSv9fQA9Q=\",\"secondaryKey\":\"EBJtG3Yz9XwFID9wKAq2QHYdFgFqdOG0lg36qEn4z54=\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235951Z:a651657f-527d-4aee-ae3b-0f8705f14c98", - "date" : "Wed, 28 Mar 2018 23:59:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080319Z:00853d6b-eed2-4837-a78e-decd5c6e2024", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "date" : "Tue, 19 Jun 2018 08:03:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "5b25692e-085d-4748-a525-1d5ddb599c39", - "content-length" : "123", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "6e5d8cec-2b92-4120-9a3c-a968cde2dbee", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a651657f-527d-4aee-ae3b-0f8705f14c98" + "x-ms-correlation-request-id" : "00853d6b-eed2-4837-a78e-decd5c6e2024" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47\",\"location\":\"Central US\",\"name\":\"rc1ea41732034bc53e47\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc1ea41732034bc53e47.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}]}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235951Z:6b80c636-96ad-415e-81a6-3ddbb3afd4e9", - "x-ms-ratelimit-remaining-subscription-reads" : "14908", - "date" : "Wed, 28 Mar 2018 23:59:51 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080350Z:e2613cd9-831a-4e10-aa82-b8e6718dac83", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "date" : "Tue, 19 Jun 2018 08:03:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "81d5fde2-c00c-43f0-b0b4-27d50a5ccc47", - "content-length" : "1981", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "984e1d8d-7209-43c7-9bae-b688901eec3c", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6b80c636-96ad-415e-81a6-3ddbb3afd4e9" + "x-ms-correlation-request-id" : "e2613cd9-831a-4e10-aa82-b8e6718dac83" } }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T235952Z:c60050eb-60d5-49e9-8239-33a3ba5af18c", - "date" : "Wed, 28 Mar 2018 23:59:52 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080420Z:5027dfbc-1392-46ac-8d49-8610ca5b43a7", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "date" : "Tue, 19 Jun 2018 08:04:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "1270ae43-78ba-4659-8422-f9b990eaea3a", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "952a3880-eb53-4c70-ae7b-98caa009ec88", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c60050eb-60d5-49e9-8239-33a3ba5af18c" + "x-ms-correlation-request-id" : "5027dfbc-1392-46ac-8d49-8610ca5b43a7" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000023Z:f793a98e-0eb4-4caf-bc1a-5ec50b0ee9fc", - "x-ms-ratelimit-remaining-subscription-reads" : "14908", - "date" : "Thu, 29 Mar 2018 00:00:22 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080450Z:89b2856a-e33c-4a90-836a-29b8163233db", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "date" : "Tue, 19 Jun 2018 08:04:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "25294fc6-f591-477c-84e5-c8c2837c647f", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "3e0221cf-8916-4e41-9702-fc0d20d1f1d0", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f793a98e-0eb4-4caf-bc1a-5ec50b0ee9fc" + "x-ms-correlation-request-id" : "89b2856a-e33c-4a90-836a-29b8163233db" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000053Z:8a4e1764-802f-45a8-8959-3f9a8e6bbcfb", - "x-ms-ratelimit-remaining-subscription-reads" : "14907", - "date" : "Thu, 29 Mar 2018 00:00:52 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080520Z:de257f03-81e1-4b87-bf5d-bd8cc872210d", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "date" : "Tue, 19 Jun 2018 08:05:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e7db5c88-f588-4434-8d61-530429c77b67", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "c4c83388-c2df-46fb-a88a-62fd2cd9755c", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8a4e1764-802f-45a8-8959-3f9a8e6bbcfb" + "x-ms-correlation-request-id" : "de257f03-81e1-4b87-bf5d-bd8cc872210d" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000123Z:0d501fd6-78dd-4132-bc4f-2d5f0ef00bdd", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", - "date" : "Thu, 29 Mar 2018 00:01:23 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080550Z:5d7a9984-cf04-48a9-ae09-8eeee718e8ee", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "date" : "Tue, 19 Jun 2018 08:05:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0116ca94-dc3f-45ec-af1b-7fbc00b98a51", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "000795c5-c98b-4e45-a53e-4dde8f9f3073", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0d501fd6-78dd-4132-bc4f-2d5f0ef00bdd" + "x-ms-correlation-request-id" : "5d7a9984-cf04-48a9-ae09-8eeee718e8ee" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000153Z:074d3f36-cf5b-4499-a8c6-06ff4607d381", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", - "date" : "Thu, 29 Mar 2018 00:01:52 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080620Z:0138c055-5c71-4d0c-ab7a-104471369b68", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "date" : "Tue, 19 Jun 2018 08:06:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "63d4e64a-5932-4e72-bfa3-113d7ddff2dd", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "d589a332-053a-4c7c-ac98-9eb8b459d274", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "074d3f36-cf5b-4499-a8c6-06ff4607d381" + "x-ms-correlation-request-id" : "0138c055-5c71-4d0c-ab7a-104471369b68" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000223Z:74c5ce3e-962d-4ba7-8e52-4809200a1a3a", - "x-ms-ratelimit-remaining-subscription-reads" : "14904", - "date" : "Thu, 29 Mar 2018 00:02:22 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080650Z:cddeba99-7c32-4b2a-a5ca-e980327969e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "date" : "Tue, 19 Jun 2018 08:06:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "aea3ec22-42bb-4a21-96d8-7c257ad3321b", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "3a096b14-d696-4090-b199-54cf9f41359f", + "content-length" : "663", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "74c5ce3e-962d-4ba7-8e52-4809200a1a3a" + "x-ms-correlation-request-id" : "cddeba99-7c32-4b2a-a5ca-e980327969e3" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/redis/rc3fab19890dbef7b749?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000253Z:b0515199-0c91-4ec3-8bfd-7dfb3f8de6a7", - "x-ms-ratelimit-remaining-subscription-reads" : "14903", - "date" : "Thu, 29 Mar 2018 00:02:53 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080720Z:c18ab6f2-9366-4e39-9368-3cdba77a8cf5", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "date" : "Tue, 19 Jun 2018 08:07:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "fd6bd8df-fa73-4ac9-9bb2-90d4548c7a9a", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "8ff17213-f735-49bd-aa3e-a8a0e36102a6", + "content-length" : "664", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b0515199-0c91-4ec3-8bfd-7dfb3f8de6a7" + "x-ms-correlation-request-id" : "c18ab6f2-9366-4e39-9368-3cdba77a8cf5" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265/listKeys?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2847,27 +2812,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"primaryKey\":\"O+3ro1D5ZpKKAAS3pHqwJoybCClANKtx3M38vHty6OE=\",\"secondaryKey\":\"EwZKaYeAOpJkiZ0FEfj3LW9oM8KVQQKUq9UofFrM3Ac=\"}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000323Z:dd159a4f-85a6-4951-b755-bcf29c81254a", - "x-ms-ratelimit-remaining-subscription-reads" : "14902", - "date" : "Thu, 29 Mar 2018 00:03:23 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080721Z:14fb63d0-42f8-444a-893e-e15ea6a4ef2d", + "date" : "Tue, 19 Jun 2018 08:07:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "19cc4273-f26b-4881-a440-3cd21a82a20b", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "34e88655-4a6f-4e94-92e7-d36ad49d57a1", + "content-length" : "123", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dd159a4f-85a6-4951-b755-bcf29c81254a" + "x-ms-correlation-request-id" : "14fb63d0-42f8-444a-893e-e15ea6a4ef2d" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265/regenerateKey?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2875,27 +2840,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"primaryKey\":\"O+3ro1D5ZpKKAAS3pHqwJoybCClANKtx3M38vHty6OE=\",\"secondaryKey\":\"+3YjZ0nK/KonnLoBquxx65i1KT6V2zV3VWo72xTr2ts=\"}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000353Z:293a93f5-6ef5-411a-a7b1-e67ccc146390", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", - "date" : "Thu, 29 Mar 2018 00:03:53 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080721Z:932cc872-f56d-40b9-9c0b-d79dd751eb89", + "date" : "Tue, 19 Jun 2018 08:07:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "bf1267dc-7ed7-4a53-8917-3abb47ecb806", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "6feb271e-0493-4436-bf3e-14e9d8ea442b", + "content-length" : "123", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "293a93f5-6ef5-411a-a7b1-e67ccc146390" + "x-ms-correlation-request-id" : "932cc872-f56d-40b9-9c0b-d79dd751eb89" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2903,55 +2868,53 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265\",\"location\":\"Central US\",\"name\":\"rc15106506697eb83265\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"rc15106506697eb83265.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000423Z:aea1b6df-b16a-4f14-bece-0cde2ba7ebdd", - "x-ms-ratelimit-remaining-subscription-reads" : "14899", - "date" : "Thu, 29 Mar 2018 00:04:23 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080721Z:babac666-4719-46ff-81eb-34aff3331810", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "date" : "Tue, 19 Jun 2018 08:07:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "6f81d2b1-b5c5-485a-8635-b6ef06264d41", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "43f04cd8-78a7-493d-9c3a-96efb74f6bf4", + "content-length" : "1981", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aea1b6df-b16a-4f14-bece-0cde2ba7ebdd" + "x-ms-correlation-request-id" : "babac666-4719-46ff-81eb-34aff3331810" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265/patchSchedules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000453Z:6b306033-ee88-4477-8d5c-055119314455", - "x-ms-ratelimit-remaining-subscription-reads" : "14898", - "date" : "Thu, 29 Mar 2018 00:04:53 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'rc15106506697eb83265'.\\r\\nRequestID=26174f94-8664-4fdd-8d1a-284f1e5144d5\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180619T080722Z:5136ef23-d1b6-4ef0-8f1e-aceee4332d77", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "date" : "Tue, 19 Jun 2018 08:07:21 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e910c6e7-3baa-46fa-9cec-3d63a25bc612", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "26174f94-8664-4fdd-8d1a-284f1e5144d5", + "content-length" : "188", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6b306033-ee88-4477-8d5c-055119314455" + "x-ms-correlation-request-id" : "5136ef23-d1b6-4ef0-8f1e-aceee4332d77" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265/firewallRules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -2959,55 +2922,53 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"value\":[]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000524Z:50ccdf80-e0fd-4c02-a1a8-4f6978918306", - "x-ms-ratelimit-remaining-subscription-reads" : "14897", - "date" : "Thu, 29 Mar 2018 00:05:23 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080722Z:91b72222-1ab7-46f6-bd44-35aab0dcb6b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "date" : "Tue, 19 Jun 2018 08:07:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "fb0fc3cb-af30-4ac4-ba7f-e11ef641248a", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "b096142f-c65a-4704-ba43-c97833513c9a", + "content-length" : "12", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "50ccdf80-e0fd-4c02-a1a8-4f6978918306" + "x-ms-correlation-request-id" : "91b72222-1ab7-46f6-bd44-35aab0dcb6b9" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23/patchSchedules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000554Z:6a5fcc1a-b507-4909-97f7-951a0a99ca6b", - "x-ms-ratelimit-remaining-subscription-reads" : "14896", - "date" : "Thu, 29 Mar 2018 00:05:53 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'rc2cee09018e5f690d23'.\\r\\nRequestID=1aa713cc-1619-4581-be03-1141658127ac\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180619T080722Z:9f5bd2e6-1860-4871-ab21-bb637d3a0ba8", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "date" : "Tue, 19 Jun 2018 08:07:22 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "3bed5740-c3a2-4253-b53d-00d95f9afb01", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "1aa713cc-1619-4581-be03-1141658127ac", + "content-length" : "188", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6a5fcc1a-b507-4909-97f7-951a0a99ca6b" + "x-ms-correlation-request-id" : "9f5bd2e6-1860-4871-ab21-bb637d3a0ba8" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23/firewallRules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3015,55 +2976,53 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"value\":[]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000624Z:ecc485d4-6a76-40c6-bf62-aaa572c6242d", - "x-ms-ratelimit-remaining-subscription-reads" : "14895", - "date" : "Thu, 29 Mar 2018 00:06:24 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080722Z:bdb14a63-8888-41c7-a3a3-3653dff5c304", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "date" : "Tue, 19 Jun 2018 08:07:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "bd393793-d634-430c-8716-293d3315b5ca", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "0a8eceec-d1cb-4c5a-9905-5a0f78028465", + "content-length" : "12", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ecc485d4-6a76-40c6-bf62-aaa572c6242d" + "x-ms-correlation-request-id" : "bdb14a63-8888-41c7-a3a3-3653dff5c304" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749/patchSchedules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000654Z:7ca1a7a7-ffdc-44c4-a9a9-e8982940ffde", - "x-ms-ratelimit-remaining-subscription-reads" : "14894", - "date" : "Thu, 29 Mar 2018 00:06:54 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'rc3fab19890dbef7b749'.\\r\\nRequestID=e31147a5-b921-45e3-87bd-0f2d6f739dc4\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180619T080722Z:07654003-73fb-45a2-b6a2-ef1dae0b4e0c", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "date" : "Tue, 19 Jun 2018 08:07:22 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "5ff1aff8-ed60-41e2-a01c-acec47b0cae9", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "e31147a5-b921-45e3-87bd-0f2d6f739dc4", + "content-length" : "188", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7ca1a7a7-ffdc-44c4-a9a9-e8982940ffde" + "x-ms-correlation-request-id" : "07654003-73fb-45a2-b6a2-ef1dae0b4e0c" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749/firewallRules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3071,27 +3030,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"value\":[]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000724Z:8d6db7ca-471b-4a25-abd7-0874a85aa3b2", - "x-ms-ratelimit-remaining-subscription-reads" : "14893", - "date" : "Thu, 29 Mar 2018 00:07:23 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080722Z:ed9ff2da-2212-4d8b-9c00-21c087ba1421", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "date" : "Tue, 19 Jun 2018 08:07:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "bfb96c68-06f0-4cb1-ba66-a1c5e3cadf77", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "92690fbe-86bf-4bd3-820c-273ce26ce715", + "content-length" : "12", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d6db7ca-471b-4a25-abd7-0874a85aa3b2" + "x-ms-correlation-request-id" : "ed9ff2da-2212-4d8b-9c00-21c087ba1421" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3099,27 +3058,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000754Z:d7d5e11a-c17b-4146-8f19-e30d860d3b33", - "x-ms-ratelimit-remaining-subscription-reads" : "14892", - "date" : "Thu, 29 Mar 2018 00:07:54 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080723Z:48165447-d35e-43d9-a244-2693845cb196", + "date" : "Tue, 19 Jun 2018 08:07:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "adf4bc02-7420-44b8-89c3-d984a3d30837", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "4c2d52a8-054b-43f9-8d5e-192574e86324", + "content-length" : "694", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d7d5e11a-c17b-4146-8f19-e30d860d3b33" + "x-ms-correlation-request-id" : "48165447-d35e-43d9-a244-2693845cb196" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3127,27 +3086,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000825Z:cabb2848-bced-47c2-817f-5a7158720f1a", - "x-ms-ratelimit-remaining-subscription-reads" : "14891", - "date" : "Thu, 29 Mar 2018 00:08:24 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080754Z:5ac5c2ee-8049-4409-a0a0-ab4e838e58aa", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "date" : "Tue, 19 Jun 2018 08:07:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e7126699-0a5d-4402-9631-1054d84693f9", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "6f9137d5-2d6e-4519-8e95-a1f3d29364ad", + "content-length" : "694", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cabb2848-bced-47c2-817f-5a7158720f1a" + "x-ms-correlation-request-id" : "5ac5c2ee-8049-4409-a0a0-ab4e838e58aa" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3155,27 +3114,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000855Z:903a4379-ccdf-412d-bc45-54fcd93d03b8", - "x-ms-ratelimit-remaining-subscription-reads" : "14890", - "date" : "Thu, 29 Mar 2018 00:08:54 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080824Z:73fcb901-41d0-465c-a289-cc3abf74fcd3", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "date" : "Tue, 19 Jun 2018 08:08:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "fef06bb5-7e08-4a2c-9085-dd1abcdae1c5", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "a0a9d32b-e89f-41ad-8f37-4cdcb3b263a4", + "content-length" : "694", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "903a4379-ccdf-412d-bc45-54fcd93d03b8" + "x-ms-correlation-request-id" : "73fcb901-41d0-465c-a289-cc3abf74fcd3" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3183,27 +3142,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000925Z:78df7623-ceb6-4625-8476-d86b00ae8e26", - "x-ms-ratelimit-remaining-subscription-reads" : "14889", - "date" : "Thu, 29 Mar 2018 00:09:25 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080854Z:c3548888-a496-4f96-a3fe-6ba0c31bca73", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "date" : "Tue, 19 Jun 2018 08:08:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "3a5dd2bf-d1f0-4c74-8c49-7a8105f3d678", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "f1aa5733-5393-46f9-bd64-62eb4abf2da7", + "content-length" : "694", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "78df7623-ceb6-4625-8476-d86b00ae8e26" + "x-ms-correlation-request-id" : "c3548888-a496-4f96-a3fe-6ba0c31bca73" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3211,27 +3170,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T000955Z:6fbc1ac5-cf54-4ecd-a639-677967e36e71", - "x-ms-ratelimit-remaining-subscription-reads" : "14888", - "date" : "Thu, 29 Mar 2018 00:09:54 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080924Z:806e92a1-21bd-4faa-ac63-5d4cc2f3ba13", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "date" : "Tue, 19 Jun 2018 08:09:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "778e7bce-7b17-4e15-8dad-a00abe345b74", - "content-length" : "695", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "4cb405d7-d4a2-4856-850a-b7845ae16298", + "content-length" : "694", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6fbc1ac5-cf54-4ecd-a639-677967e36e71" + "x-ms-correlation-request-id" : "806e92a1-21bd-4faa-ac63-5d4cc2f3ba13" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3239,27 +3198,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc30eb308943479866c0.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":4,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001025Z:cc1ee86d-606a-4085-a93b-a752e8daf7c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14887", - "date" : "Thu, 29 Mar 2018 00:10:25 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T080954Z:50df25c0-8093-47bc-8a76-5e258eb1eb07", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "date" : "Tue, 19 Jun 2018 08:09:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a19f5b13-b547-4b62-9ce8-bfb917c3d7d7", - "content-length" : "697", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "ebaa769d-84ec-4a13-afd6-59007ef49ad5", + "content-length" : "694", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cc1ee86d-606a-4085-a93b-a752e8daf7c4" + "x-ms-correlation-request-id" : "50df25c0-8093-47bc-8a76-5e258eb1eb07" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0/patchSchedules/default?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3267,27 +3226,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001026Z:b2d20471-eaf7-49b6-87b3-db5270566615", - "date" : "Thu, 29 Mar 2018 00:10:26 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T081024Z:b9f89e33-ef83-4876-aa3e-e3525f23a7e7", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "date" : "Tue, 19 Jun 2018 08:10:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "8a2706c0-b20c-48ee-9065-53bb46afde35", - "content-length" : "384", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "1e6cef6f-e35a-4388-8968-231d7bb1d3c9", + "content-length" : "694", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b2d20471-eaf7-49b6-87b3-db5270566615" + "x-ms-correlation-request-id" : "b9f89e33-ef83-4876-aa3e-e3525f23a7e7" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0/patchSchedules/default?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3295,27 +3254,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"rc30eb308943479866c0/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001026Z:58ddef57-88c5-46b9-b040-5b119b50fa2b", - "x-ms-ratelimit-remaining-subscription-reads" : "14886", - "date" : "Thu, 29 Mar 2018 00:10:26 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T081055Z:8372be49-0725-4984-b10f-7e688da60b9d", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "date" : "Tue, 19 Jun 2018 08:10:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "40940f50-c4c4-4afd-8651-a4be6b615981", - "content-length" : "384", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "4887c1fa-9843-49fa-a39e-1884174e4f49", + "content-length" : "694", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "58ddef57-88c5-46b9-b040-5b119b50fa2b" + "x-ms-correlation-request-id" : "8372be49-0725-4984-b10f-7e688da60b9d" } }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc30eb308943479866c0/forceReboot?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3323,27 +3282,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"message\": \"The requested reboot operation for 'AllNodes' has been successfully scheduled and should be executed shortly.\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001028Z:9d0efaee-9099-43d9-a7a9-9630a61a5393", - "date" : "Thu, 29 Mar 2018 00:10:28 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T081125Z:7c11e8a3-cdbf-4841-91c3-cd168bcc9074", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "date" : "Tue, 19 Jun 2018 08:11:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "7725759f-61bf-4c10-a48b-f538da0c4f92", - "content-length" : "130", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "ab4a1ea7-29aa-4430-b87e-8a1a8b40a2c3", + "content-length" : "694", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9d0efaee-9099-43d9-a7a9-9630a61a5393" + "x-ms-correlation-request-id" : "7c11e8a3-cdbf-4841-91c3-cd168bcc9074" } }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3351,27 +3310,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001030Z:1d00fc61-0f0f-4beb-8385-274d515f9597", - "date" : "Thu, 29 Mar 2018 00:10:29 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T081155Z:e84c82ee-efb3-4a4a-aa1a-094b91057e7e", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "date" : "Tue, 19 Jun 2018 08:11:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "9988445b-d144-40aa-beaf-50b7fd8b88fa", + "x-ms-request-id" : "46d4e24e-37c9-402e-a66c-0ab950b620e5", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1d00fc61-0f0f-4beb-8385-274d515f9597" + "x-ms-correlation-request-id" : "e84c82ee-efb3-4a4a-aa1a-094b91057e7e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3379,27 +3338,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001100Z:1ff315e4-e0b1-4e7b-b4f9-269b8ee98a48", + "x-ms-routing-request-id" : "WESTUS2:20180619T081225Z:44d3c466-eee0-4b49-834c-713fd629e193", "x-ms-ratelimit-remaining-subscription-reads" : "14885", - "date" : "Thu, 29 Mar 2018 00:10:59 GMT", + "date" : "Tue, 19 Jun 2018 08:12:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e6e8529c-868b-4019-a53b-9035675b30da", + "x-ms-request-id" : "16201a1d-b594-4103-bafe-4c9a8f26415d", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1ff315e4-e0b1-4e7b-b4f9-269b8ee98a48" + "x-ms-correlation-request-id" : "44d3c466-eee0-4b49-834c-713fd629e193" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3407,27 +3366,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001130Z:bc092f9f-441a-4ed8-a611-41656c79de95", + "x-ms-routing-request-id" : "WESTUS2:20180619T081255Z:064fc451-8f6e-4a14-a52e-1e88b73ef373", "x-ms-ratelimit-remaining-subscription-reads" : "14884", - "date" : "Thu, 29 Mar 2018 00:11:30 GMT", + "date" : "Tue, 19 Jun 2018 08:12:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "04375b9e-beb2-477d-b457-9a15a9882779", + "x-ms-request-id" : "929bbfc8-f5c4-43dc-8f20-f1f4ce471a50", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bc092f9f-441a-4ed8-a611-41656c79de95" + "x-ms-correlation-request-id" : "064fc451-8f6e-4a14-a52e-1e88b73ef373" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3435,27 +3394,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001200Z:75b7e00d-08a2-414b-8ad3-0186052e5530", + "x-ms-routing-request-id" : "WESTUS2:20180619T081326Z:76ade03a-185b-41d0-8591-326f2b760382", "x-ms-ratelimit-remaining-subscription-reads" : "14883", - "date" : "Thu, 29 Mar 2018 00:11:59 GMT", + "date" : "Tue, 19 Jun 2018 08:13:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "cdd0a2a0-1aaf-47f2-9d67-06671dfb6619", + "x-ms-request-id" : "6a629fe6-c840-40b4-b3ef-14ad7e883992", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "75b7e00d-08a2-414b-8ad3-0186052e5530" + "x-ms-correlation-request-id" : "76ade03a-185b-41d0-8591-326f2b760382" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3463,27 +3422,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001230Z:283c1572-f249-4b32-b3cb-f724982cc59f", + "x-ms-routing-request-id" : "WESTUS2:20180619T081356Z:64b589a2-9edb-4ae1-9a81-f3359e81da9f", "x-ms-ratelimit-remaining-subscription-reads" : "14882", - "date" : "Thu, 29 Mar 2018 00:12:30 GMT", + "date" : "Tue, 19 Jun 2018 08:13:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "68a8850d-fdcb-46ac-9ee4-490cffd934da", + "x-ms-request-id" : "e10669cc-1fe4-45e8-8b4d-cfa5e9a9c247", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "283c1572-f249-4b32-b3cb-f724982cc59f" + "x-ms-correlation-request-id" : "64b589a2-9edb-4ae1-9a81-f3359e81da9f" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3491,27 +3450,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001300Z:36221b44-ea08-4606-a2bd-cd925a7a2798", + "x-ms-routing-request-id" : "WESTUS2:20180619T081426Z:acc81be4-9f90-4f5f-88f3-e02860d3a0bd", "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "date" : "Thu, 29 Mar 2018 00:13:00 GMT", + "date" : "Tue, 19 Jun 2018 08:14:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "707bceb1-9fbd-4e7c-8628-1a108b71e4e1", + "x-ms-request-id" : "0c1280c3-ef5d-49f3-91f4-cb4fdb606d5f", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "36221b44-ea08-4606-a2bd-cd925a7a2798" + "x-ms-correlation-request-id" : "acc81be4-9f90-4f5f-88f3-e02860d3a0bd" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3519,27 +3478,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001330Z:d9c42cb2-ada9-49f6-bbd4-c470c9409cba", + "x-ms-routing-request-id" : "WESTUS2:20180619T081456Z:988f09bf-3300-4e6f-bdcf-381e9c69169b", "x-ms-ratelimit-remaining-subscription-reads" : "14880", - "date" : "Thu, 29 Mar 2018 00:13:29 GMT", + "date" : "Tue, 19 Jun 2018 08:14:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "bee39f75-f4eb-45f5-89bf-b5785911c7cb", + "x-ms-request-id" : "b96cb709-9b0b-4c5c-b38e-3b243b90bc21", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d9c42cb2-ada9-49f6-bbd4-c470c9409cba" + "x-ms-correlation-request-id" : "988f09bf-3300-4e6f-bdcf-381e9c69169b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3547,27 +3506,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001400Z:c52f1e0a-2d92-4263-a3a6-fb009a1233f2", + "x-ms-routing-request-id" : "WESTUS2:20180619T081526Z:e1f124f3-488b-4760-a2b7-41b126f2ec42", "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "date" : "Thu, 29 Mar 2018 00:14:00 GMT", + "date" : "Tue, 19 Jun 2018 08:15:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d8509462-474f-4bc2-b5b5-d39b74c40851", + "x-ms-request-id" : "e15f34c2-adfc-49dd-956c-f91c224e213d", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c52f1e0a-2d92-4263-a3a6-fb009a1233f2" + "x-ms-correlation-request-id" : "e1f124f3-488b-4760-a2b7-41b126f2ec42" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3575,27 +3534,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001431Z:9c3cd815-57f6-4b10-a362-ea3fe293bff3", + "x-ms-routing-request-id" : "WESTUS2:20180619T081556Z:b146605e-7a39-4caf-b2d5-cf4ef1a5a80b", "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "date" : "Thu, 29 Mar 2018 00:14:30 GMT", + "date" : "Tue, 19 Jun 2018 08:15:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "1294cdd6-54e1-4cc0-9674-c50bef1eba3e", + "x-ms-request-id" : "d22a22ec-eda5-480e-9735-2f44fad7bb24", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c3cd815-57f6-4b10-a362-ea3fe293bff3" + "x-ms-correlation-request-id" : "b146605e-7a39-4caf-b2d5-cf4ef1a5a80b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3603,27 +3562,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001501Z:40860a59-2e03-4188-b114-2ab18df3b1ec", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "date" : "Thu, 29 Mar 2018 00:15:00 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T081626Z:ae18671d-f393-4331-a05a-32943897d128", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "date" : "Tue, 19 Jun 2018 08:16:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "4f50cd18-7da2-4143-8443-98f6ad8b61e9", + "x-ms-request-id" : "48480b6e-61f0-4f18-b489-099ab5df50cf", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "40860a59-2e03-4188-b114-2ab18df3b1ec" + "x-ms-correlation-request-id" : "ae18671d-f393-4331-a05a-32943897d128" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3631,27 +3590,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001531Z:50d153e9-27c1-4709-a164-14013491fbd7", - "x-ms-ratelimit-remaining-subscription-reads" : "14880", - "date" : "Thu, 29 Mar 2018 00:15:31 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T081657Z:46c58108-3644-45e0-933d-3913ab29284d", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "date" : "Tue, 19 Jun 2018 08:16:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a9ec5156-6af4-4d76-b130-6c74eceedb6a", + "x-ms-request-id" : "de293d72-13b6-4723-8206-252b4130887d", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "50d153e9-27c1-4709-a164-14013491fbd7" + "x-ms-correlation-request-id" : "46c58108-3644-45e0-933d-3913ab29284d" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3659,27 +3618,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001601Z:8902034c-4448-49c9-a17a-07ca767ba1ed", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "date" : "Thu, 29 Mar 2018 00:16:01 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T081727Z:9d131513-bd3a-492e-8522-c86c227ce281", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "date" : "Tue, 19 Jun 2018 08:17:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "30c68fbc-88c5-4465-bb94-6ca825923866", + "x-ms-request-id" : "11a13d5b-30b0-4755-b083-5863bf389011", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8902034c-4448-49c9-a17a-07ca767ba1ed" + "x-ms-correlation-request-id" : "9d131513-bd3a-492e-8522-c86c227ce281" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3687,27 +3646,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001631Z:0cb35379-6cb9-4457-9e56-e6c714a3f0d5", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "date" : "Thu, 29 Mar 2018 00:16:30 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T081757Z:5a7ca19d-689d-4903-8264-1bc8d6866289", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", + "date" : "Tue, 19 Jun 2018 08:17:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "dd4693b7-7c3f-48be-9c8e-f63645b49204", + "x-ms-request-id" : "28f4f777-0420-4ca9-b6f2-199f0c166493", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0cb35379-6cb9-4457-9e56-e6c714a3f0d5" + "x-ms-correlation-request-id" : "5a7ca19d-689d-4903-8264-1bc8d6866289" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3715,27 +3674,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001701Z:870c984b-9ae6-4679-b9d9-4ef0344db684", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", - "date" : "Thu, 29 Mar 2018 00:17:00 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T081827Z:13acc2a4-1497-4726-a4a1-b106bafe302a", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", + "date" : "Tue, 19 Jun 2018 08:18:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "06cc902c-2577-4be6-a0a7-9fc4c87a556d", + "x-ms-request-id" : "f1628875-24ff-40d5-88cf-b27ff6599913", "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "870c984b-9ae6-4679-b9d9-4ef0344db684" + "x-ms-correlation-request-id" : "13acc2a4-1497-4726-a4a1-b106bafe302a" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -3743,781 +3702,2402 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001732Z:5c1d28b7-cbc3-47ed-b8a8-c7ac94aa6b41", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", - "date" : "Thu, 29 Mar 2018 00:17:31 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T081857Z:0c71b08e-f12b-4600-9d05-caf9d8d4a276", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "date" : "Tue, 19 Jun 2018 08:18:57 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a85a69a5-7422-4e25-b01c-8c331bb68e16", + "content-length" : "694", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0c71b08e-f12b-4600-9d05-caf9d8d4a276" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T081928Z:8e9e7d49-2e4e-4cbc-aca8-2fe4721eff3b", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "date" : "Tue, 19 Jun 2018 08:19:27 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "9a2d3fb2-5e18-46b0-a041-c48b1011090a", + "content-length" : "694", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8e9e7d49-2e4e-4cbc-aca8-2fe4721eff3b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2cee09018e5f690d23.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":4,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T081958Z:95135def-f00d-4005-be3c-fef3d44b2ea9", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "date" : "Tue, 19 Jun 2018 08:19:57 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f8eaca69-46d3-4547-90a9-0458cd822ac0", + "content-length" : "696", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "95135def-f00d-4005-be3c-fef3d44b2ea9" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23/patchSchedules/default?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"rc2cee09018e5f690d23/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T081958Z:bd2fc3ac-fa5f-49b1-a79c-78f5086c91ff", + "date" : "Tue, 19 Jun 2018 08:19:58 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a1a936d4-b81a-4625-8850-1322841adc05", + "content-length" : "384", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bd2fc3ac-fa5f-49b1-a79c-78f5086c91ff" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc2cee09018e5f690d23/forceReboot?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"message\": \"The requested reboot operation for 'AllNodes' has been successfully scheduled and should be executed shortly.\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082001Z:d54dfb4e-ed8b-4ef4-a098-11dc07ed494f", + "date" : "Tue, 19 Jun 2018 08:20:00 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "bc813753-2144-4724-be84-d7c4b54c68f7", + "content-length" : "130", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d54dfb4e-ed8b-4ef4-a098-11dc07ed494f" + } + }, { + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082002Z:583963bc-1d62-473b-bbde-f8946fcf773d", + "date" : "Tue, 19 Jun 2018 08:20:02 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c520a603-8ae3-4fac-8ad5-98b80f809f6b", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "583963bc-1d62-473b-bbde-f8946fcf773d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082032Z:b1da61ce-8178-4d0d-8059-ad39cc4fde13", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "date" : "Tue, 19 Jun 2018 08:20:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "e0fb8749-cf4e-4c94-a215-6d687afbabfa", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b1da61ce-8178-4d0d-8059-ad39cc4fde13" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082102Z:80193a45-0c06-486f-a168-c0759bc23cd3", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "date" : "Tue, 19 Jun 2018 08:21:02 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f19e5d0b-2171-4508-901a-19ceefe7113f", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "80193a45-0c06-486f-a168-c0759bc23cd3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082133Z:8c105a0c-7cde-44b5-9a1a-2c88d9eec9fb", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "date" : "Tue, 19 Jun 2018 08:21:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "6e424248-1aed-4bcb-9df3-0ba8cf7a5d4a", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8c105a0c-7cde-44b5-9a1a-2c88d9eec9fb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082203Z:92d02e31-2f89-4129-8989-84b6b2b88dc3", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "date" : "Tue, 19 Jun 2018 08:22:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "107e7532-8334-4e6f-83d2-8a9b881f5de9", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "92d02e31-2f89-4129-8989-84b6b2b88dc3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082233Z:b396fe9b-4382-4071-a82e-a3fcd51845e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "date" : "Tue, 19 Jun 2018 08:22:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "af95b5c6-821c-4890-aad2-f21739a35743", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b396fe9b-4382-4071-a82e-a3fcd51845e3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082303Z:12958393-0f68-45b7-ba7c-732808f97eda", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "date" : "Tue, 19 Jun 2018 08:23:02 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5b270e76-4337-4011-82b8-37fe6f115f64", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "12958393-0f68-45b7-ba7c-732808f97eda" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082333Z:aecaaace-c49e-4a0f-b0fc-4da0e4977c5a", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "date" : "Tue, 19 Jun 2018 08:23:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "241f54ae-6c91-4687-b5c3-b1760a039923", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "aecaaace-c49e-4a0f-b0fc-4da0e4977c5a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082403Z:1029b0f3-3310-497c-8d7c-5b7e74582b10", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "date" : "Tue, 19 Jun 2018 08:24:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8f22783c-f7ba-428b-a336-cfd8b7697887", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1029b0f3-3310-497c-8d7c-5b7e74582b10" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082433Z:43bf3c80-ee6f-47b8-bb08-4fa421034c1a", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "date" : "Tue, 19 Jun 2018 08:24:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "19d9e0b8-d3f3-45f0-bdae-1ad812cea0a7", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "43bf3c80-ee6f-47b8-bb08-4fa421034c1a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082504Z:a9973c36-dda5-4b15-b5fb-3e8ccb0bcfd2", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "date" : "Tue, 19 Jun 2018 08:25:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c42fbfd9-5874-4a69-aef2-a5b6f12a9278", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a9973c36-dda5-4b15-b5fb-3e8ccb0bcfd2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082534Z:9d5b4a86-74d4-4de3-82ff-4b7f035b8ac6", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "date" : "Tue, 19 Jun 2018 08:25:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "481d8da8-4b13-4654-81de-259bd294060e", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9d5b4a86-74d4-4de3-82ff-4b7f035b8ac6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082604Z:b5edd708-3e9e-49dd-89fd-6a1172117151", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "date" : "Tue, 19 Jun 2018 08:26:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "bb8d18ea-68c6-4868-9f96-413a49884faa", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b5edd708-3e9e-49dd-89fd-6a1172117151" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082634Z:01fd91c2-ac5b-4e6e-8405-c851b284fb55", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "date" : "Tue, 19 Jun 2018 08:26:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "13d4d708-c378-4800-b679-3d09df63f605", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "01fd91c2-ac5b-4e6e-8405-c851b284fb55" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082704Z:8632d270-eea7-4f40-91e4-7c5c899c9457", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "date" : "Tue, 19 Jun 2018 08:27:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "e6651837-a181-4ae5-9938-dac53767fb5c", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8632d270-eea7-4f40-91e4-7c5c899c9457" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082734Z:71002956-c467-4261-83d9-b06ba4b153af", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "date" : "Tue, 19 Jun 2018 08:27:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c699bf4e-2c35-4cf5-88b8-393dbf3a09e8", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "71002956-c467-4261-83d9-b06ba4b153af" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082804Z:31974954-e978-4f5f-8d0f-b756e7186c6e", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "date" : "Tue, 19 Jun 2018 08:28:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "df1693bc-567e-461a-b615-bf9aeea66990", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "31974954-e978-4f5f-8d0f-b756e7186c6e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082834Z:69509d77-0e50-44e4-a17a-398ff8fc6812", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "date" : "Tue, 19 Jun 2018 08:28:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "ffaa8c75-958d-4baa-b1fa-aa815c66db1d", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "69509d77-0e50-44e4-a17a-398ff8fc6812" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082905Z:9e13bc18-449c-4872-9436-b4829d7d0570", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "date" : "Tue, 19 Jun 2018 08:29:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3c692a4a-6cf1-40f4-b5e9-fac1d941adff", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9e13bc18-449c-4872-9436-b4829d7d0570" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T082935Z:e7f482d9-6401-4a9a-8109-4d13fa0805a8", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "date" : "Tue, 19 Jun 2018 08:29:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "7af7daf1-a11a-4470-b47c-b06b7429a2a4", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e7f482d9-6401-4a9a-8109-4d13fa0805a8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T083005Z:74309791-bd9e-49dc-bc86-59c27dc06942", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "date" : "Tue, 19 Jun 2018 08:30:05 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2434b67d-11f2-48d2-9d98-07b388023371", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "74309791-bd9e-49dc-bc86-59c27dc06942" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T083035Z:f3753433-d15d-49bf-af85-84bd04b50565", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "date" : "Tue, 19 Jun 2018 08:30:35 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "6e0df20e-f95a-4481-a018-a4e41789122a", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f3753433-d15d-49bf-af85-84bd04b50565" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T083105Z:e659db17-2206-4803-b10c-58e4db3ffbc6", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "date" : "Tue, 19 Jun 2018 08:31:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f95ae3c9-7272-477e-b023-e2a2c7ece896", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e659db17-2206-4803-b10c-58e4db3ffbc6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T083135Z:e33c7ff0-5240-4de6-adfd-650f442e6097", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "date" : "Tue, 19 Jun 2018 08:31:35 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "66abde93-0090-4fe1-875f-0899fd4e85c7", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e33c7ff0-5240-4de6-adfd-650f442e6097" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T083206Z:f163302f-eb4e-4d3e-ae70-9423f2bc8675", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "date" : "Tue, 19 Jun 2018 08:32:05 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "460dec9a-66b3-4ab8-a0fe-7d53c0276c0a", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f163302f-eb4e-4d3e-ae70-9423f2bc8675" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T083236Z:d7813190-fec5-4122-95fa-b853038bfb67", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "date" : "Tue, 19 Jun 2018 08:32:35 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "fbeb0b65-f549-48dd-9b0b-c00fc8974444", + "content-length" : "695", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d7813190-fec5-4122-95fa-b853038bfb67" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc3fab19890dbef7b749.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":4,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T083306Z:f3fe581b-459b-4f0a-b754-b1bc989c6688", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "date" : "Tue, 19 Jun 2018 08:33:06 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "20e503d6-1609-4cc5-8283-d061780b458d", + "content-length" : "697", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f3fe581b-459b-4f0a-b754-b1bc989c6688" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749/patchSchedules/default?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"rc3fab19890dbef7b749/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T083306Z:7fdd8c97-f93a-407c-9148-7ed2d12251be", + "date" : "Tue, 19 Jun 2018 08:33:06 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "8981cd53-d1ee-48a0-a39e-f4f5240998a8", + "content-length" : "384", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7fdd8c97-f93a-407c-9148-7ed2d12251be" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc3fab19890dbef7b749/forceReboot?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"message\": \"The requested reboot operation for 'AllNodes' has been successfully scheduled and should be executed shortly.\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T083309Z:f2754f32-7065-4db6-8ac1-c2a8f872e218", + "date" : "Tue, 19 Jun 2018 08:33:09 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2e9eb4d6-bac4-4d50-a0db-f0067a2cb6a0", + "content-length" : "130", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f2754f32-7065-4db6-8ac1-c2a8f872e218" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749/providers/Microsoft.Cache/Redis/rc15106506697eb83265?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T083309Z:d0d52858-80be-4941-a0c5-506494119689", + "date" : "Tue, 19 Jun 2018 08:33:09 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f17bd5a3-a93b-4b52-b08d-c85c4074ecdd", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d0d52858-80be-4941-a0c5-506494119689", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T083309Z:3e5fe31f-96b8-4b72-9257-34ead05dcc1d", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "date" : "Tue, 19 Jun 2018 08:33:09 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c5cc10a5-f3cb-461f-a066-214a4813b765", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3e5fe31f-96b8-4b72-9257-34ead05dcc1d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T083339Z:ad4d2eba-5441-49fd-89f4-ef853d6af3c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "date" : "Tue, 19 Jun 2018 08:33:39 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "fbd83c38-ad5f-47af-8cc0-f927ecbcdf6c", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ad4d2eba-5441-49fd-89f4-ef853d6af3c6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T083410Z:ab4a2ac7-4a54-4c0e-85f0-9c7edfaa750e", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "date" : "Tue, 19 Jun 2018 08:34:09 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "49c4fbab-d24c-4f1e-9375-b9f8ce376596", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ab4a2ac7-4a54-4c0e-85f0-9c7edfaa750e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T083440Z:c4d1759f-c533-4757-84fb-3288cd9e419e", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "date" : "Tue, 19 Jun 2018 08:34:39 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "c96c9da1-de12-47c5-b5f6-416891802f65", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c4d1759f-c533-4757-84fb-3288cd9e419e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T083510Z:74d8998d-d353-4a34-87ad-18ced3911bf9", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "date" : "Tue, 19 Jun 2018 08:35:09 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "0e3434da-ea98-4c5f-abc1-b557f4f1afa8", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "74d8998d-d353-4a34-87ad-18ced3911bf9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T083540Z:38d9057e-3da1-4608-a830-91090cb33124", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "date" : "Tue, 19 Jun 2018 08:35:39 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "98019d50-a4e8-4e8b-9aba-6abe581d415c", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "38d9057e-3da1-4608-a830-91090cb33124" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T083610Z:75780a9c-05d4-431f-9089-eccd39fe28c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "date" : "Tue, 19 Jun 2018 08:36:09 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "1edd6b68-2ea6-4cbe-8add-9a08f88d6649", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "75780a9c-05d4-431f-9089-eccd39fe28c0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T083640Z:6bcd7c0e-cc42-45e0-a6eb-93f453adcd1b", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "date" : "Tue, 19 Jun 2018 08:36:39 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "1f0d1789-972c-489f-a5c5-03d469beddf0", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6bcd7c0e-cc42-45e0-a6eb-93f453adcd1b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T083710Z:c54a6263-999e-418a-8bb4-dd169766b7a5", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "date" : "Tue, 19 Jun 2018 08:37:10 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5c8bf77a-d189-41c3-887d-73c5e1f150ed", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c54a6263-999e-418a-8bb4-dd169766b7a5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T083740Z:20fcdcca-deca-4b4f-8d1e-bcdbd8c6f863", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "date" : "Tue, 19 Jun 2018 08:37:40 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "b8884223-a9a3-414a-a7ab-b84cc2f1afa4", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "20fcdcca-deca-4b4f-8d1e-bcdbd8c6f863" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T083810Z:73ef6739-0712-4f62-aab6-07cd850334f4", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "date" : "Tue, 19 Jun 2018 08:38:09 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "ae323b9b-c37c-4957-8c01-b44b9481a956", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "73ef6739-0712-4f62-aab6-07cd850334f4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/f17bd5a3-a93b-4b52-b08d-c85c4074ecdd?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "Body" : "", + "x-ms-routing-request-id" : "WESTUS2:20180619T083840Z:ce07be38-b6ea-45a1-99e1-4f97ba19b831", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "date" : "Tue, 19 Jun 2018 08:38:40 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f1e3eedb-430c-4862-96a5-1f2b05a50554", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ce07be38-b6ea-45a1-99e1-4f97ba19b831" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrcmc510241183dc59749?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc510241183dc59749\",\"name\":\"rgrcmc510241183dc59749\",\"location\":\"centralus\",\"tags\":{\"product\":\"javasdk\",\"cause\":\"automation\",\"date\":\"2018-06-19T07:55:45.578Z\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-routing-request-id" : "WESTUS2:20180619T083840Z:6b807c0b-3dc5-49b7-b882-83a82a10b905", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "date" : "Tue, 19 Jun 2018 08:38:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "6b807c0b-3dc5-49b7-b882-83a82a10b905", + "content-length" : "284", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6b807c0b-3dc5-49b7-b882-83a82a10b905" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrcmc510241183dc59749?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T083841Z:d4965633-8c35-4ae8-aa41-9628f0761dd9", + "date" : "Tue, 19 Jun 2018 08:38:41 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d4965633-8c35-4ae8-aa41-9628f0761dd9", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d4965633-8c35-4ae8-aa41-9628f0761dd9", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T083841Z:dcf0c822-2f7b-46db-a6f1-c5ff95eeb403", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "date" : "Tue, 19 Jun 2018 08:38:41 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "dcf0c822-2f7b-46db-a6f1-c5ff95eeb403", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "dcf0c822-2f7b-46db-a6f1-c5ff95eeb403" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T083856Z:12be96d1-f355-425a-984b-b8c54075c4f8", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "date" : "Tue, 19 Jun 2018 08:38:55 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "12be96d1-f355-425a-984b-b8c54075c4f8", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "12be96d1-f355-425a-984b-b8c54075c4f8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T083911Z:fe231e4f-1ef2-4d47-a802-32721a084770", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", + "date" : "Tue, 19 Jun 2018 08:39:11 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "fe231e4f-1ef2-4d47-a802-32721a084770", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fe231e4f-1ef2-4d47-a802-32721a084770" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T083926Z:fd9a9e1b-aab9-4ec9-b15d-69c042a00e2e", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "date" : "Tue, 19 Jun 2018 08:39:26 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "fd9a9e1b-aab9-4ec9-b15d-69c042a00e2e", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fd9a9e1b-aab9-4ec9-b15d-69c042a00e2e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T083942Z:168d444e-d692-4814-b383-168e999784c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "date" : "Tue, 19 Jun 2018 08:39:41 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "168d444e-d692-4814-b383-168e999784c6", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "168d444e-d692-4814-b383-168e999784c6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T083957Z:7f9a878b-a1b7-4abf-8bf1-4e63dbd63d8d", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "date" : "Tue, 19 Jun 2018 08:39:56 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "7f9a878b-a1b7-4abf-8bf1-4e63dbd63d8d", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7f9a878b-a1b7-4abf-8bf1-4e63dbd63d8d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084012Z:cb72cfbc-d6aa-4219-9792-5ad0b27ebc82", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "date" : "Tue, 19 Jun 2018 08:40:11 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "cb72cfbc-d6aa-4219-9792-5ad0b27ebc82", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cb72cfbc-d6aa-4219-9792-5ad0b27ebc82" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084027Z:e939fd9e-fe78-471e-90eb-80964103ee2f", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "date" : "Tue, 19 Jun 2018 08:40:26 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "e939fd9e-fe78-471e-90eb-80964103ee2f", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e939fd9e-fe78-471e-90eb-80964103ee2f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084042Z:2ffc21a1-9041-4d19-83c7-d87596fc9e61", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "date" : "Tue, 19 Jun 2018 08:40:41 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2ffc21a1-9041-4d19-83c7-d87596fc9e61", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2ffc21a1-9041-4d19-83c7-d87596fc9e61" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084057Z:36385f85-c0b0-4131-9b1a-1b29f74e5ff7", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "date" : "Tue, 19 Jun 2018 08:40:57 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "36385f85-c0b0-4131-9b1a-1b29f74e5ff7", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "36385f85-c0b0-4131-9b1a-1b29f74e5ff7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084112Z:b24e2ae4-7caf-49c0-a541-0574da1ff1d6", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "date" : "Tue, 19 Jun 2018 08:41:12 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "b24e2ae4-7caf-49c0-a541-0574da1ff1d6", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b24e2ae4-7caf-49c0-a541-0574da1ff1d6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084127Z:b0e621bf-5a13-4671-84dd-c2a452ea09b3", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "date" : "Tue, 19 Jun 2018 08:41:26 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "b0e621bf-5a13-4671-84dd-c2a452ea09b3", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b0e621bf-5a13-4671-84dd-c2a452ea09b3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084142Z:2f6c9491-d197-4e92-8f9b-0675797e0dfb", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", + "date" : "Tue, 19 Jun 2018 08:41:42 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2f6c9491-d197-4e92-8f9b-0675797e0dfb", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2f6c9491-d197-4e92-8f9b-0675797e0dfb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084157Z:cfb94719-31c2-42de-9e10-fb8a5c164ed6", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "date" : "Tue, 19 Jun 2018 08:41:57 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "cfb94719-31c2-42de-9e10-fb8a5c164ed6", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cfb94719-31c2-42de-9e10-fb8a5c164ed6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084213Z:fbacc230-18e5-46ea-b9d1-adbdb618c1ad", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "date" : "Tue, 19 Jun 2018 08:42:12 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "fbacc230-18e5-46ea-b9d1-adbdb618c1ad", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fbacc230-18e5-46ea-b9d1-adbdb618c1ad" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084228Z:ec3ac8e8-2909-4e4a-b793-6a7a0d05178a", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "date" : "Tue, 19 Jun 2018 08:42:28 GMT", + "pragma" : "no-cache", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "77864c3f-eb61-486b-b53f-ee491e39a002", - "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "ec3ac8e8-2909-4e4a-b793-6a7a0d05178a", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5c1d28b7-cbc3-47ed-b8a8-c7ac94aa6b41" + "x-ms-correlation-request-id" : "ec3ac8e8-2909-4e4a-b793-6a7a0d05178a" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001802Z:45b421cf-8aa7-44e9-82af-db08e1ce3fe3", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "date" : "Thu, 29 Mar 2018 00:18:01 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084243Z:899ce2ed-b7fc-439a-8493-09cdfca0060f", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "date" : "Tue, 19 Jun 2018 08:42:42 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "994745f0-663e-4d8c-8397-e577c69b7842", - "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "899ce2ed-b7fc-439a-8493-09cdfca0060f", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "45b421cf-8aa7-44e9-82af-db08e1ce3fe3" + "x-ms-correlation-request-id" : "899ce2ed-b7fc-439a-8493-09cdfca0060f" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001832Z:1f09fde7-3e01-454e-8974-4e2649367af2", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", - "date" : "Thu, 29 Mar 2018 00:18:32 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084258Z:6b2058e1-6fde-4f2c-94ff-2fe9b0ce2b2f", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "date" : "Tue, 19 Jun 2018 08:42:57 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "674b1e53-e78c-436b-89f2-7983d92aa422", - "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "6b2058e1-6fde-4f2c-94ff-2fe9b0ce2b2f", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1f09fde7-3e01-454e-8974-4e2649367af2" + "x-ms-correlation-request-id" : "6b2058e1-6fde-4f2c-94ff-2fe9b0ce2b2f" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001902Z:43b7bd61-3e71-4e96-8b1a-45e44aa38f58", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", - "date" : "Thu, 29 Mar 2018 00:19:02 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084313Z:9b6947a7-cf64-4697-a73d-f7f9d7917a3b", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "date" : "Tue, 19 Jun 2018 08:43:13 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "bf9a7ba1-b9f1-419c-96d4-11f02459b0ff", - "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "9b6947a7-cf64-4697-a73d-f7f9d7917a3b", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "43b7bd61-3e71-4e96-8b1a-45e44aa38f58" + "x-ms-correlation-request-id" : "9b6947a7-cf64-4697-a73d-f7f9d7917a3b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T001932Z:9df4a015-a954-4a98-adf6-f76700d7b0a2", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "date" : "Thu, 29 Mar 2018 00:19:32 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084328Z:10e7f908-dc15-49de-8eb6-33fe90b7431f", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "date" : "Tue, 19 Jun 2018 08:43:28 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "61356553-e1be-46a1-9ffb-f10b9581e22d", - "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "10e7f908-dc15-49de-8eb6-33fe90b7431f", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9df4a015-a954-4a98-adf6-f76700d7b0a2" + "x-ms-correlation-request-id" : "10e7f908-dc15-49de-8eb6-33fe90b7431f" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T002002Z:e37869a2-879d-4901-894c-a6d5c2273881", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "date" : "Thu, 29 Mar 2018 00:20:02 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084343Z:fb578b4f-d3d9-4f1a-b2aa-b40f1d4afe14", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "date" : "Tue, 19 Jun 2018 08:43:42 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "531fbb3b-0c90-4c06-aba7-78ef33ffc65e", - "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "fb578b4f-d3d9-4f1a-b2aa-b40f1d4afe14", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e37869a2-879d-4901-894c-a6d5c2273881" + "x-ms-correlation-request-id" : "fb578b4f-d3d9-4f1a-b2aa-b40f1d4afe14" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T002033Z:d5b038f3-82a2-436f-a66d-628c5ad38e4e", - "x-ms-ratelimit-remaining-subscription-reads" : "14880", - "date" : "Thu, 29 Mar 2018 00:20:32 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084358Z:f11f193f-8e53-4a95-ab70-a9b0f85c847d", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "date" : "Tue, 19 Jun 2018 08:43:58 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "139c47b1-9af6-4f06-8747-b0261a89952e", - "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "f11f193f-8e53-4a95-ab70-a9b0f85c847d", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d5b038f3-82a2-436f-a66d-628c5ad38e4e" + "x-ms-correlation-request-id" : "f11f193f-8e53-4a95-ab70-a9b0f85c847d" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":3,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T002103Z:0fe4c32b-9f86-4588-90dd-2fe1980a6637", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "date" : "Thu, 29 Mar 2018 00:21:02 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084413Z:d423ca3b-56fc-4e24-8b08-06119eb82d15", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "date" : "Tue, 19 Jun 2018 08:44:13 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "dd39d1f0-6bad-41b4-9715-7d255576187e", - "content-length" : "694", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "d423ca3b-56fc-4e24-8b08-06119eb82d15", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0fe4c32b-9f86-4588-90dd-2fe1980a6637" + "x-ms-correlation-request-id" : "d423ca3b-56fc-4e24-8b08-06119eb82d15" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"20\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-policy\":\"allkeys-random\",\"maxmemory-delta\":\"20\"},\"accessKeys\":null,\"hostName\":\"rc2b1e41311caedf60e6.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":4,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T002133Z:f7550173-2252-458c-a5f2-8aa2a56f2c7a", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "date" : "Thu, 29 Mar 2018 00:21:33 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084428Z:0bc6f4c5-b607-4ba4-86f4-f089fdd39db6", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "date" : "Tue, 19 Jun 2018 08:44:28 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "499a0a60-bb3e-422f-95f0-8b0afb5f45af", - "content-length" : "696", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "0bc6f4c5-b607-4ba4-86f4-f089fdd39db6", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f7550173-2252-458c-a5f2-8aa2a56f2c7a" + "x-ms-correlation-request-id" : "0bc6f4c5-b607-4ba4-86f4-f089fdd39db6" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6/patchSchedules/default?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T002134Z:5b2e13c8-141b-4b95-b263-7f9a5d043f06", - "date" : "Thu, 29 Mar 2018 00:21:34 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084443Z:902a23d1-7045-4161-9607-e8d58da57bc8", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", + "date" : "Tue, 19 Jun 2018 08:44:43 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d7230c7c-cc44-41d3-a5ea-04d34db23ab8", - "content-length" : "384", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "902a23d1-7045-4161-9607-e8d58da57bc8", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5b2e13c8-141b-4b95-b263-7f9a5d043f06" + "x-ms-correlation-request-id" : "902a23d1-7045-4161-9607-e8d58da57bc8" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6/patchSchedules/default?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6/patchSchedules/default\",\"location\":\"Central US\",\"name\":\"rc2b1e41311caedf60e6/default\",\"type\":\"Microsoft.Cache/Redis/PatchSchedules\",\"properties\":{\"scheduleEntries\":[{\"dayOfWeek\":\"Monday\",\"startHourUtc\":5,\"maintenanceWindow\":\"PT5H\"}]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T002134Z:a4795370-7678-42b4-80a0-970c3197c76f", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", - "date" : "Thu, 29 Mar 2018 00:21:34 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084459Z:de6a5268-080d-4da2-82f1-c20aec069c23", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "date" : "Tue, 19 Jun 2018 08:44:58 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "046a96fe-1c4d-414a-ba00-9823c4e64a29", - "content-length" : "384", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "de6a5268-080d-4da2-82f1-c20aec069c23", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a4795370-7678-42b4-80a0-970c3197c76f" + "x-ms-correlation-request-id" : "de6a5268-080d-4da2-82f1-c20aec069c23" } }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc2b1e41311caedf60e6/forceReboot?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"message\": \"The requested reboot operation for 'AllNodes' has been successfully scheduled and should be executed shortly.\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180329T002137Z:adb94c01-09fc-4f54-9959-1620467546ab", - "date" : "Thu, 29 Mar 2018 00:21:37 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084514Z:e55cab18-d5ad-401f-9a2a-f269300466f1", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "date" : "Tue, 19 Jun 2018 08:45:13 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "014dffb9-951e-46ee-bcc0-acc1e2860e41", - "content-length" : "130", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "e55cab18-d5ad-401f-9a2a-f269300466f1", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "adb94c01-09fc-4f54-9959-1620467546ab" + "x-ms-correlation-request-id" : "e55cab18-d5ad-401f-9a2a-f269300466f1" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b/providers/Microsoft.Cache/Redis/rc1ea41732034bc53e47?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/0a7f11f3-16b8-4efb-aff3-8f806ec5c47f?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180329T002138Z:3992bc3e-26ad-420d-9e46-562dfa02e4f0", - "date" : "Thu, 29 Mar 2018 00:21:38 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084529Z:9390ad7b-d738-4c88-b77d-236e30f9bd97", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "date" : "Tue, 19 Jun 2018 08:45:29 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0a7f11f3-16b8-4efb-aff3-8f806ec5c47f", + "x-ms-request-id" : "9390ad7b-d738-4c88-b77d-236e30f9bd97", "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3992bc3e-26ad-420d-9e46-562dfa02e4f0" + "x-ms-correlation-request-id" : "9390ad7b-d738-4c88-b77d-236e30f9bd97" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/0a7f11f3-16b8-4efb-aff3-8f806ec5c47f?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/0a7f11f3-16b8-4efb-aff3-8f806ec5c47f?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180329T002138Z:272c5500-2858-4f62-aedf-df6540b8d096", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", - "date" : "Thu, 29 Mar 2018 00:21:38 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084544Z:66b346b8-e44f-4545-9bec-1e2840155f33", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "date" : "Tue, 19 Jun 2018 08:45:43 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2187fcb6-2394-43d1-bf34-b1c30988fbb2", + "x-ms-request-id" : "66b346b8-e44f-4545-9bec-1e2840155f33", "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "272c5500-2858-4f62-aedf-df6540b8d096" + "x-ms-correlation-request-id" : "66b346b8-e44f-4545-9bec-1e2840155f33" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/0a7f11f3-16b8-4efb-aff3-8f806ec5c47f?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/0a7f11f3-16b8-4efb-aff3-8f806ec5c47f?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180329T002208Z:ac4fca29-acb5-48ca-80e5-6cf3b663954e", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "date" : "Thu, 29 Mar 2018 00:22:07 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084559Z:98116a94-b873-4723-9e73-534d1b2ae5b3", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "date" : "Tue, 19 Jun 2018 08:45:58 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ce359daf-f497-4a44-a86f-8221e4459f35", + "x-ms-request-id" : "98116a94-b873-4723-9e73-534d1b2ae5b3", "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ac4fca29-acb5-48ca-80e5-6cf3b663954e" + "x-ms-correlation-request-id" : "98116a94-b873-4723-9e73-534d1b2ae5b3" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/0a7f11f3-16b8-4efb-aff3-8f806ec5c47f?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/0a7f11f3-16b8-4efb-aff3-8f806ec5c47f?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180329T002238Z:f74af3a3-1735-4b23-a90e-c63fc8113efa", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", - "date" : "Thu, 29 Mar 2018 00:22:37 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084614Z:26477f14-7ae3-498a-8320-a2bc154f6966", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "date" : "Tue, 19 Jun 2018 08:46:13 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "590950bf-8ced-49d1-bd03-339fb8b40bbc", + "x-ms-request-id" : "26477f14-7ae3-498a-8320-a2bc154f6966", "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f74af3a3-1735-4b23-a90e-c63fc8113efa" + "x-ms-correlation-request-id" : "26477f14-7ae3-498a-8320-a2bc154f6966" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/Central%20US/operationresults/0a7f11f3-16b8-4efb-aff3-8f806ec5c47f?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "202", "Body" : "", - "x-ms-routing-request-id" : "WESTUS2:20180329T002308Z:037e1678-311b-4571-83a4-1b3f6e50dce7", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", - "date" : "Thu, 29 Mar 2018 00:23:07 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084629Z:46d155d5-b7da-4d7b-b457-4bae68093b62", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "date" : "Tue, 19 Jun 2018 08:46:29 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "39eccc0a-c497-45d2-9493-512da46b4bdf", + "x-ms-request-id" : "46d155d5-b7da-4d7b-b457-4bae68093b62", "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "037e1678-311b-4571-83a4-1b3f6e50dce7" + "x-ms-correlation-request-id" : "46d155d5-b7da-4d7b-b457-4bae68093b62" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrcmc1e2789135e66e97b?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrcmc1e2789135e66e97b\",\"name\":\"rgrcmc1e2789135e66e97b\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-routing-request-id" : "WESTUS2:20180329T002308Z:fc591871-ba69-4181-afdd-ad3d14e28849", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "date" : "Thu, 29 Mar 2018 00:23:08 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084644Z:f076458e-5d4c-468d-a228-7344fa80d613", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "date" : "Tue, 19 Jun 2018 08:46:44 GMT", "pragma" : "no-cache", + "cache-control" : "no-cache", "retry-after" : "0", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f076458e-5d4c-468d-a228-7344fa80d613", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f076458e-5d4c-468d-a228-7344fa80d613" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084659Z:b0d8b754-d116-47e3-ba90-e526fbce08d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "date" : "Tue, 19 Jun 2018 08:46:59 GMT", + "pragma" : "no-cache", "cache-control" : "no-cache", + "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "fc591871-ba69-4181-afdd-ad3d14e28849", - "content-length" : "200", + "x-ms-request-id" : "b0d8b754-d116-47e3-ba90-e526fbce08d9", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc591871-ba69-4181-afdd-ad3d14e28849" + "x-ms-correlation-request-id" : "b0d8b754-d116-47e3-ba90-e526fbce08d9" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrcmc1e2789135e66e97b?api-version=2017-05-10", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180329T002309Z:f3f19573-c7bd-4dcf-8ca6-ed33cb82d6e2", - "date" : "Thu, 29 Mar 2018 00:23:09 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084714Z:c7dde255-9e1e-4ad7-b3df-a6ddeead67b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "date" : "Tue, 19 Jun 2018 08:47:14 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f3f19573-c7bd-4dcf-8ca6-ed33cb82d6e2", + "x-ms-request-id" : "c7dde255-9e1e-4ad7-b3df-a6ddeead67b9", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f3f19573-c7bd-4dcf-8ca6-ed33cb82d6e2" + "x-ms-correlation-request-id" : "c7dde255-9e1e-4ad7-b3df-a6ddeead67b9" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180329T002309Z:abf20377-4645-476d-bb52-c409f7479206", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", - "date" : "Thu, 29 Mar 2018 00:23:09 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084729Z:07868e4c-e488-4302-a052-d555ca64afa0", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", + "date" : "Tue, 19 Jun 2018 08:47:29 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "abf20377-4645-476d-bb52-c409f7479206", + "x-ms-request-id" : "07868e4c-e488-4302-a052-d555ca64afa0", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "abf20377-4645-476d-bb52-c409f7479206" + "x-ms-correlation-request-id" : "07868e4c-e488-4302-a052-d555ca64afa0" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180329T002324Z:5abdf74c-0f94-4ca2-a74e-d0d40c64e4a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", - "date" : "Thu, 29 Mar 2018 00:23:24 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084745Z:2c2d5715-fae9-444d-8e06-3c26c57c5511", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "date" : "Tue, 19 Jun 2018 08:47:45 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "5abdf74c-0f94-4ca2-a74e-d0d40c64e4a9", + "x-ms-request-id" : "2c2d5715-fae9-444d-8e06-3c26c57c5511", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5abdf74c-0f94-4ca2-a74e-d0d40c64e4a9" + "x-ms-correlation-request-id" : "2c2d5715-fae9-444d-8e06-3c26c57c5511" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180329T002339Z:940f68c5-de8d-463c-9189-62cba48664e7", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", - "date" : "Thu, 29 Mar 2018 00:23:39 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084800Z:0a725e86-7606-4361-bb05-a1f79abe959f", + "x-ms-ratelimit-remaining-subscription-reads" : "14845", + "date" : "Tue, 19 Jun 2018 08:47:59 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "940f68c5-de8d-463c-9189-62cba48664e7", + "x-ms-request-id" : "0a725e86-7606-4361-bb05-a1f79abe959f", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "940f68c5-de8d-463c-9189-62cba48664e7" + "x-ms-correlation-request-id" : "0a725e86-7606-4361-bb05-a1f79abe959f" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180329T002355Z:c00b325d-65d1-487c-8f1a-6a83f77ebef8", - "x-ms-ratelimit-remaining-subscription-reads" : "14867", - "date" : "Thu, 29 Mar 2018 00:23:54 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084815Z:8ed14103-6c8c-4a21-b4ff-09b84a57ea32", + "x-ms-ratelimit-remaining-subscription-reads" : "14844", + "date" : "Tue, 19 Jun 2018 08:48:15 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c00b325d-65d1-487c-8f1a-6a83f77ebef8", + "x-ms-request-id" : "8ed14103-6c8c-4a21-b4ff-09b84a57ea32", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c00b325d-65d1-487c-8f1a-6a83f77ebef8" + "x-ms-correlation-request-id" : "8ed14103-6c8c-4a21-b4ff-09b84a57ea32" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180329T002410Z:e705edf6-7d69-4351-b3fb-2a520d8c3c89", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", - "date" : "Thu, 29 Mar 2018 00:24:09 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084830Z:5f820b0c-b7ed-400c-8615-7773e6b1eae5", + "x-ms-ratelimit-remaining-subscription-reads" : "14843", + "date" : "Tue, 19 Jun 2018 08:48:29 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e705edf6-7d69-4351-b3fb-2a520d8c3c89", + "x-ms-request-id" : "5f820b0c-b7ed-400c-8615-7773e6b1eae5", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e705edf6-7d69-4351-b3fb-2a520d8c3c89" + "x-ms-correlation-request-id" : "5f820b0c-b7ed-400c-8615-7773e6b1eae5" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180329T002425Z:77235654-308f-4462-8995-f3d875009f14", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", - "date" : "Thu, 29 Mar 2018 00:24:25 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084845Z:9089bbc9-f011-4743-8210-a735777e84b5", + "x-ms-ratelimit-remaining-subscription-reads" : "14842", + "date" : "Tue, 19 Jun 2018 08:48:45 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "77235654-308f-4462-8995-f3d875009f14", + "x-ms-request-id" : "9089bbc9-f011-4743-8210-a735777e84b5", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "77235654-308f-4462-8995-f3d875009f14" + "x-ms-correlation-request-id" : "9089bbc9-f011-4743-8210-a735777e84b5" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180329T002440Z:bb478310-c4c8-4bd7-89b2-e1a1a6fdae1e", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", - "date" : "Thu, 29 Mar 2018 00:24:39 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084900Z:596e4bcd-8b8d-45d8-884e-1ad304d0e414", + "x-ms-ratelimit-remaining-subscription-reads" : "14841", + "date" : "Tue, 19 Jun 2018 08:49:00 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "bb478310-c4c8-4bd7-89b2-e1a1a6fdae1e", + "x-ms-request-id" : "596e4bcd-8b8d-45d8-884e-1ad304d0e414", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb478310-c4c8-4bd7-89b2-e1a1a6fdae1e" + "x-ms-correlation-request-id" : "596e4bcd-8b8d-45d8-884e-1ad304d0e414" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180329T002455Z:75c6e894-b8e7-4859-aca2-8413a9af3827", - "x-ms-ratelimit-remaining-subscription-reads" : "14863", - "date" : "Thu, 29 Mar 2018 00:24:54 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084915Z:5324944b-0230-4d40-8191-b6f3fa1227cc", + "x-ms-ratelimit-remaining-subscription-reads" : "14840", + "date" : "Tue, 19 Jun 2018 08:49:14 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "75c6e894-b8e7-4859-aca2-8413a9af3827", + "x-ms-request-id" : "5324944b-0230-4d40-8191-b6f3fa1227cc", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "75c6e894-b8e7-4859-aca2-8413a9af3827" + "x-ms-correlation-request-id" : "5324944b-0230-4d40-8191-b6f3fa1227cc" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180329T002510Z:1d4a90b6-1484-425d-bbe6-676d36eec844", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", - "date" : "Thu, 29 Mar 2018 00:25:10 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084930Z:8417c56b-e673-4073-876d-f45a99073868", + "x-ms-ratelimit-remaining-subscription-reads" : "14839", + "date" : "Tue, 19 Jun 2018 08:49:30 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "1d4a90b6-1484-425d-bbe6-676d36eec844", + "x-ms-request-id" : "8417c56b-e673-4073-876d-f45a99073868", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1d4a90b6-1484-425d-bbe6-676d36eec844" + "x-ms-correlation-request-id" : "8417c56b-e673-4073-876d-f45a99073868" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180329T002525Z:c1258adb-cd36-4065-a0b4-70c7c785b6c2", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "date" : "Thu, 29 Mar 2018 00:25:25 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T084945Z:2b830463-74d4-485e-8dcc-d453625db75a", + "x-ms-ratelimit-remaining-subscription-reads" : "14838", + "date" : "Tue, 19 Jun 2018 08:49:44 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c1258adb-cd36-4065-a0b4-70c7c785b6c2", + "x-ms-request-id" : "2b830463-74d4-485e-8dcc-d453625db75a", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c1258adb-cd36-4065-a0b4-70c7c785b6c2" + "x-ms-correlation-request-id" : "2b830463-74d4-485e-8dcc-d453625db75a" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "202", "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180329T002540Z:243cee55-a3b8-4ace-9655-dccedf526ec3", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", - "date" : "Thu, 29 Mar 2018 00:25:40 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T085000Z:eb8cb220-836c-4d05-9d36-1bcf2cf50c38", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", + "date" : "Tue, 19 Jun 2018 08:50:00 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "243cee55-a3b8-4ace-9655-dccedf526ec3", + "x-ms-request-id" : "eb8cb220-836c-4d05-9d36-1bcf2cf50c38", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "243cee55-a3b8-4ace-9655-dccedf526ec3" + "x-ms-correlation-request-id" : "eb8cb220-836c-4d05-9d36-1bcf2cf50c38" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUMxRTI3ODkxMzVFNjZFOTdCLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JDTUM1MTAyNDExODNEQzU5NzQ5LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)" }, "Response" : { "StatusCode" : "200", "Body" : "", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", - "x-ms-routing-request-id" : "WESTUS2:20180329T002556Z:dfa51ceb-98bb-4676-a03f-6a1315d0aeb2", - "date" : "Thu, 29 Mar 2018 00:25:55 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "x-ms-routing-request-id" : "WESTUS2:20180619T085016Z:8e5d6170-b102-4dab-9907-399c500a1f5c", + "date" : "Tue, 19 Jun 2018 08:50:15 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "dfa51ceb-98bb-4676-a03f-6a1315d0aeb2", + "x-ms-request-id" : "8e5d6170-b102-4dab-9907-399c500a1f5c", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dfa51ceb-98bb-4676-a03f-6a1315d0aeb2" + "x-ms-correlation-request-id" : "8e5d6170-b102-4dab-9907-399c500a1f5c" } } ], - "variables" : [ "rc1ea41732034bc53e47", "rc2b1e41311caedf60e6", "rc30eb308943479866c0", "rgrcmc1e2789135e66e97b", "4a76a644-87af-4307-a752-40e750d175c8", "f9436f89-285e-4d59-8aa3-fec7dc0b1363", "3f84d7c2-b7ee-46d1-a34b-9dc1bdd1c25b", "8e769872-d7b1-48ca-96d8-d28e06cbccdb", "96de24af-7a0c-4e31-98d6-a92031b52dec", "7984e16b-1188-41ae-9bfb-d4709bd26dd8", "5f217b55-c392-4907-8ca4-bc84bd93044d", "e0ea614e-3488-457a-898c-5d28901a2a5b", "f0d795eb-9a01-4efc-9fed-8b06eb4106f3", "6ad34de2-f600-4fa2-9432-46a1d50f79b3", "e50eeecd-1a47-4f1c-a78f-b37039c02956" ] + "variables" : [ "rc15106506697eb83265", "rc2cee09018e5f690d23", "rc3fab19890dbef7b749", "rgrcmc510241183dc59749", "f0314864-91c8-42e7-b731-8c8d162c00d8", "575ecaa8-6ee8-4f44-a6d7-90e2506748f8", "449b394f-df60-4b02-8033-ed48251e8162", "6328cf81-fba5-451c-baf4-12e4a74d1ed1", "7dc5511b-59fc-4420-a14d-2ce472547eb6", "8bdf9a3c-268c-445e-b23e-639e63381891", "41cac580-4c22-439f-b286-cf970557b229", "14c9cd7d-3ad5-4299-8405-5c8951d1885b", "c064db59-5e82-4d32-87ce-9b0b39c5c3b6", "24939216-d97f-45a6-8eaf-db603572297c", "5b23fa86-4a2f-4c74-bf22-57662b1ce188", "0a3da230-b9c0-4064-b3a0-eeae6f7801c5", "253084b8-b00d-49b8-a0ad-c92855fdd986" ] } \ No newline at end of file diff --git a/azure/src/test/resources/session-records/testRedis.json b/azure/src/test/resources/session-records/testRedis.json index 27776a19a5c..c6c8a30df94 100644 --- a/azure/src/test/resources/session-records/testRedis.json +++ b/azure/src/test/resources/session-records/testRedis.json @@ -9,25 +9,24 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redisjfzg5dlfcbaqicnigjkneg6ozyuh7pqihkvnutuvvrzfrtjycy55ki2pc3xrp/providers/Microsoft.Cache/Redis/redis3rcbkbbyupn6yf4ytba\",\"location\":\"West US\",\"name\":\"redis3rcbkbbyupn6yf4ytba\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis3rcbkbbyupn6yf4ytba.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redisjfzg5dlfcbaqicnigjkneg6ozyuh7pqihkvnutuvvrzfrtjycy55ki2pc3xrp/providers/Microsoft.Cache/Redis/redis6kksmoavpfx3x2jtk3x\",\"location\":\"West US\",\"name\":\"redis6kksmoavpfx3x2jtk3x\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":1},\"enableNonSslPort\":false,\"tenantSettings\":{\"hello\":\"1\"},\"redisConfiguration\":{\"maxclients\":\"1000\",\"maxmemory-reserved\":\"50\",\"maxfragmentationmemory-reserved\":\"50\",\"maxmemory-delta\":\"50\"},\"accessKeys\":null,\"hostName\":\"redis6kksmoavpfx3x2jtk3x.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8703/providers/Microsoft.Cache/Redis/javacsmrc4542\",\"location\":\"East Asia\",\"name\":\"javacsmrc4542\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"javacsmrc4542.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8703Second/providers/Microsoft.Cache/Redis/javacsmrc4542Second\",\"location\":\"Central US\",\"name\":\"javacsmrc4542Second\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":1},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"7500\",\"maxmemory-reserved\":\"200\",\"maxfragmentationmemory-reserved\":\"300\",\"maxmemory-delta\":\"200\"},\"accessKeys\":null,\"hostName\":\"javacsmrc4542Second.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"shardCount\":10,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg8703Second/providers/Microsoft.Cache/Redis/javacsmrc4542Third\",\"location\":\"Central US\",\"name\":\"javacsmrc4542Third\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":true,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"500\",\"maxfragmentationmemory-reserved\":\"650\",\"maxmemory-delta\":\"500\"},\"accessKeys\":null,\"hostName\":\"javacsmrc4542Third.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}]}", - "x-ms-routing-request-id" : "WESTUS2:20180328T180840Z:bc60d9f6-efbb-47b4-9145-32cfa881356f", - "x-ms-ratelimit-remaining-subscription-reads" : "14996", - "date" : "Wed, 28 Mar 2018 18:08:39 GMT", + "Body" : "{\"value\":[]}", + "x-ms-routing-request-id" : "WESTUS2:20180619T051038Z:7594e75a-3046-4f4d-b2c5-0f38036dfc84", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "date" : "Tue, 19 Jun 2018 05:10:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "bc60d9f6-efbb-47b4-9145-32cfa881356f", - "content-length" : "3358", + "x-ms-request-id" : "7594e75a-3046-4f4d-b2c5-0f38036dfc84", + "content-length" : "12", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-original-request-ids" : "06f03f88-1c60-4382-bbdd-e6b7e4a90227", - "x-ms-correlation-request-id" : "bc60d9f6-efbb-47b4-9145-32cfa881356f" + "x-ms-correlation-request-id" : "7594e75a-3046-4f4d-b2c5-0f38036dfc84" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/redis144994group?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/redis906061group?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", "Content-Type" : "application/json; charset=utf-8" @@ -35,23 +34,23 @@ "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group\",\"name\":\"redis144994group\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group\",\"name\":\"redis906061group\",\"location\":\"eastus\",\"tags\":{\"product\":\"javasdk\",\"cause\":\"automation\",\"date\":\"2018-06-19T05:10:39.334Z\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}", "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "x-ms-routing-request-id" : "WESTUS2:20180328T180854Z:a8e422ea-1e10-471b-abf0-aba019f27ec1", - "date" : "Wed, 28 Mar 2018 18:08:54 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T051040Z:026dd100-a975-490f-9f78-60f819766882", + "date" : "Tue, 19 Jun 2018 05:10:39 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a8e422ea-1e10-471b-abf0-aba019f27ec1", - "content-length" : "185", + "x-ms-request-id" : "026dd100-a975-490f-9f78-60f819766882", + "content-length" : "269", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a8e422ea-1e10-471b-abf0-aba019f27ec1" + "x-ms-correlation-request-id" : "026dd100-a975-490f-9f78-60f819766882" } }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -59,1106 +58,1188 @@ "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":{\"primaryKey\":\"JizNgE/yJ96ylZ5a2mfCw4N6EQL9k8ea58tWMuOxKms=\",\"secondaryKey\":\"vblZULINtYmx9RDPRs7OfL3DVAbOlJSCbyQu3IWy6/Q=\"},\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":{\"primaryKey\":\"qAIi2pP3+PsUQRb9vu1jN3iQgI4jmiSjWz3w19yoSlE=\",\"secondaryKey\":\"3TqZaEEvJKzGjebiToAtE2RiPJwNh67Q8a2OlrNCdTA=\"},\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180328T180858Z:bf277510-1f36-4745-a444-cdced73c8730", - "date" : "Wed, 28 Mar 2018 18:08:58 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T051044Z:b6c0dc30-de9e-4970-8304-1f6187d61af7", + "date" : "Tue, 19 Jun 2018 05:10:44 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a2069b9f-014f-459c-8533-28bca4885ef2", + "x-ms-request-id" : "e7fd4f3c-dfc0-405c-ab45-2a7738fcd9bf", "content-length" : "742", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b6c0dc30-de9e-4970-8304-1f6187d61af7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T051044Z:f3793ed0-005a-435b-9142-65137b01854e", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "date" : "Tue, 19 Jun 2018 05:10:44 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "476d1aa3-be9e-41a6-9169-c021ac472524", + "content-length" : "623", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f3793ed0-005a-435b-9142-65137b01854e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T051114Z:3e83f9d7-a706-4fe1-8ab2-750fb47b4da3", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Tue, 19 Jun 2018 05:11:14 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "1b10f938-b598-4e5f-b899-71f2e91e98c5", + "content-length" : "623", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3e83f9d7-a706-4fe1-8ab2-750fb47b4da3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T051145Z:7ebb6fbc-c461-45f6-a933-c4b2543f9bd4", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Tue, 19 Jun 2018 05:11:44 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "530afc99-ee1e-4d58-84d8-998152443b79", + "content-length" : "623", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bf277510-1f36-4745-a444-cdced73c8730" + "x-ms-correlation-request-id" : "7ebb6fbc-c461-45f6-a933-c4b2543f9bd4" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T180858Z:2bded670-6c7f-42dd-ac98-77f2c2f5d747", + "x-ms-routing-request-id" : "WESTUS2:20180619T051215Z:a178d2a6-9199-4cdc-b04d-64e96cc0e8d0", "x-ms-ratelimit-remaining-subscription-reads" : "14995", - "date" : "Wed, 28 Mar 2018 18:08:58 GMT", + "date" : "Tue, 19 Jun 2018 05:12:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "afc3324e-9170-4ded-9bb7-e5528ddc655c", + "x-ms-request-id" : "794a9e74-fdf8-4de2-b18b-a18326acc426", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2bded670-6c7f-42dd-ac98-77f2c2f5d747" + "x-ms-correlation-request-id" : "a178d2a6-9199-4cdc-b04d-64e96cc0e8d0" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T180928Z:0e426244-82b7-4ba2-977c-0d2b04775c02", + "x-ms-routing-request-id" : "WESTUS2:20180619T051245Z:2181cf20-4475-49e2-a225-a766797bc15e", "x-ms-ratelimit-remaining-subscription-reads" : "14994", - "date" : "Wed, 28 Mar 2018 18:09:27 GMT", + "date" : "Tue, 19 Jun 2018 05:12:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "9636ee0d-d136-4d45-86eb-e7801b43d683", + "x-ms-request-id" : "fb6acd33-892c-40fe-b1be-5738dba1c813", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0e426244-82b7-4ba2-977c-0d2b04775c02" + "x-ms-correlation-request-id" : "2181cf20-4475-49e2-a225-a766797bc15e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T180959Z:f89d7708-f796-4144-99eb-e968085d1a66", + "x-ms-routing-request-id" : "WESTUS2:20180619T051315Z:05ad5621-ed25-4c3e-82fd-239590f0b1fc", "x-ms-ratelimit-remaining-subscription-reads" : "14993", - "date" : "Wed, 28 Mar 2018 18:09:58 GMT", + "date" : "Tue, 19 Jun 2018 05:13:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c5480876-e545-4d0a-9ef0-dfb342e93e54", + "x-ms-request-id" : "bccac3c3-b989-4b4e-96d2-6ea5782d3a98", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f89d7708-f796-4144-99eb-e968085d1a66" + "x-ms-correlation-request-id" : "05ad5621-ed25-4c3e-82fd-239590f0b1fc" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181029Z:3fdc72ae-79a0-4795-9bce-9ff8863cd7cc", + "x-ms-routing-request-id" : "WESTUS2:20180619T051345Z:0fed239f-1f4b-437f-83e8-e877864a2746", "x-ms-ratelimit-remaining-subscription-reads" : "14992", - "date" : "Wed, 28 Mar 2018 18:10:28 GMT", + "date" : "Tue, 19 Jun 2018 05:13:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a9668f62-2d30-480e-aef0-0d14ffd98544", + "x-ms-request-id" : "e21d9769-5ce4-4da5-bddb-9953eb9ffc0f", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3fdc72ae-79a0-4795-9bce-9ff8863cd7cc" + "x-ms-correlation-request-id" : "0fed239f-1f4b-437f-83e8-e877864a2746" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181059Z:58ecd80b-9159-46c7-99f4-d405029fc985", + "x-ms-routing-request-id" : "WESTUS2:20180619T051416Z:27ccd9bd-49a1-4137-9683-fc6e0247fa54", "x-ms-ratelimit-remaining-subscription-reads" : "14991", - "date" : "Wed, 28 Mar 2018 18:10:58 GMT", + "date" : "Tue, 19 Jun 2018 05:14:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c4ff9253-3ba0-4937-be09-d650b7b08c0d", + "x-ms-request-id" : "58285e12-e986-43e7-a997-e5bf4a886db8", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "58ecd80b-9159-46c7-99f4-d405029fc985" + "x-ms-correlation-request-id" : "27ccd9bd-49a1-4137-9683-fc6e0247fa54" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181129Z:15b139ad-4ce1-4a2f-9321-3a936f89a0b0", + "x-ms-routing-request-id" : "WESTUS2:20180619T051446Z:004b37b1-5d4f-43de-9bcb-d1ba496ca272", "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "date" : "Wed, 28 Mar 2018 18:11:29 GMT", + "date" : "Tue, 19 Jun 2018 05:14:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0c71c8fc-8460-4809-8e45-208fdcb33f9c", + "x-ms-request-id" : "3c8badb0-54d2-4727-865d-b1caf45664d8", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "15b139ad-4ce1-4a2f-9321-3a936f89a0b0" + "x-ms-correlation-request-id" : "004b37b1-5d4f-43de-9bcb-d1ba496ca272" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181159Z:1685f3f8-9bfb-48a8-bc01-91b60c916afc", + "x-ms-routing-request-id" : "WESTUS2:20180619T051516Z:bce0e120-0353-4792-8184-89bdd771fcba", "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "date" : "Wed, 28 Mar 2018 18:11:59 GMT", + "date" : "Tue, 19 Jun 2018 05:15:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "6ebd38fe-819d-46f1-b2c5-20dfaf40010d", + "x-ms-request-id" : "2a5b6d75-c295-469d-9283-8ea9a18a3ac1", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1685f3f8-9bfb-48a8-bc01-91b60c916afc" + "x-ms-correlation-request-id" : "bce0e120-0353-4792-8184-89bdd771fcba" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181230Z:024c4c20-9bac-4a66-96b9-89b3de3d1f55", + "x-ms-routing-request-id" : "WESTUS2:20180619T051546Z:9d05be1f-41e0-4ce9-9ed9-92f19d2a8608", "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "date" : "Wed, 28 Mar 2018 18:12:29 GMT", + "date" : "Tue, 19 Jun 2018 05:15:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "fac70df2-b1bf-4a3e-880a-634b07e6375f", + "x-ms-request-id" : "23161055-ea89-4a90-ac5c-6f6eb982f9f0", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "024c4c20-9bac-4a66-96b9-89b3de3d1f55" + "x-ms-correlation-request-id" : "9d05be1f-41e0-4ce9-9ed9-92f19d2a8608" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181300Z:e39a8f40-37e3-4fc9-99cb-605aa4c81c36", + "x-ms-routing-request-id" : "WESTUS2:20180619T051617Z:57bc2e35-a00f-49c6-9dbb-60234eb8acf1", "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "date" : "Wed, 28 Mar 2018 18:12:59 GMT", + "date" : "Tue, 19 Jun 2018 05:16:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ba8343c4-bb58-498e-bc8a-a43d816e303b", + "x-ms-request-id" : "b53d5560-aaf6-4bd6-b50a-96bfa8bfb5ff", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e39a8f40-37e3-4fc9-99cb-605aa4c81c36" + "x-ms-correlation-request-id" : "57bc2e35-a00f-49c6-9dbb-60234eb8acf1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181330Z:fd9cf332-138c-4cac-bd2f-8b8bd9c018c1", + "x-ms-routing-request-id" : "WESTUS2:20180619T051647Z:1c80368d-25f3-4951-b715-4fdfaaa721b5", "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "date" : "Wed, 28 Mar 2018 18:13:29 GMT", + "date" : "Tue, 19 Jun 2018 05:16:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "b927aabd-7052-4ed2-8563-5d438b74d5b7", + "x-ms-request-id" : "0ce399d4-769b-4c02-a21c-d24b7d5795f4", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fd9cf332-138c-4cac-bd2f-8b8bd9c018c1" + "x-ms-correlation-request-id" : "1c80368d-25f3-4951-b715-4fdfaaa721b5" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181400Z:37fceb30-768e-4e32-83ca-8e3f8b7e0c87", + "x-ms-routing-request-id" : "WESTUS2:20180619T051717Z:4cb6c50e-02f9-4abf-a33d-0b7dbf9eb56c", "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "date" : "Wed, 28 Mar 2018 18:14:00 GMT", + "date" : "Tue, 19 Jun 2018 05:17:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c29682c7-1c1b-418c-ad49-4a6a62b6ee3c", + "x-ms-request-id" : "cdcdff9d-0f64-4796-9342-ae3808652e76", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "37fceb30-768e-4e32-83ca-8e3f8b7e0c87" + "x-ms-correlation-request-id" : "4cb6c50e-02f9-4abf-a33d-0b7dbf9eb56c" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181430Z:dccd294d-a75d-4d05-a833-74e739b79b80", + "x-ms-routing-request-id" : "WESTUS2:20180619T051747Z:61df80bd-4864-4b7b-a0f7-3ac021c4d8ab", "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "date" : "Wed, 28 Mar 2018 18:14:30 GMT", + "date" : "Tue, 19 Jun 2018 05:17:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ad7cb0d3-4053-411e-b59a-0a4de6899a31", + "x-ms-request-id" : "44f2e77b-fc1f-481c-8f6a-a50e57da0824", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dccd294d-a75d-4d05-a833-74e739b79b80" + "x-ms-correlation-request-id" : "61df80bd-4864-4b7b-a0f7-3ac021c4d8ab" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181500Z:0fc44d38-3db6-489e-9b11-102ba71c927a", + "x-ms-routing-request-id" : "WESTUS2:20180619T051818Z:81f334aa-d275-4368-b9f7-c69c9d02e191", "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "date" : "Wed, 28 Mar 2018 18:15:00 GMT", + "date" : "Tue, 19 Jun 2018 05:18:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "deddb3c3-e547-4d8f-a732-588fafd79593", + "x-ms-request-id" : "88dd1384-725f-4573-bd7f-46c20c77f785", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0fc44d38-3db6-489e-9b11-102ba71c927a" + "x-ms-correlation-request-id" : "81f334aa-d275-4368-b9f7-c69c9d02e191" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181530Z:afb7f286-22ac-46b0-b8eb-1acd21ff801e", + "x-ms-routing-request-id" : "WESTUS2:20180619T051848Z:643789a0-6cc8-4fb3-a4b4-39c128ff20be", "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "date" : "Wed, 28 Mar 2018 18:15:30 GMT", + "date" : "Tue, 19 Jun 2018 05:18:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "3276b4a9-6a8d-4625-8115-e5cb1393dc36", + "x-ms-request-id" : "3e599257-3fe5-4a07-89df-54bdb501272a", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "afb7f286-22ac-46b0-b8eb-1acd21ff801e" + "x-ms-correlation-request-id" : "643789a0-6cc8-4fb3-a4b4-39c128ff20be" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181601Z:22e15a80-fd49-4b03-8de2-e88278255fa4", + "x-ms-routing-request-id" : "WESTUS2:20180619T051918Z:ea71f640-dbd5-4038-ad9f-e5bed630a32e", "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "date" : "Wed, 28 Mar 2018 18:16:00 GMT", + "date" : "Tue, 19 Jun 2018 05:19:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "27e4d62c-328a-407d-a360-6decb63cceb3", + "x-ms-request-id" : "363534df-3c06-4fc4-b7e4-7ceb26af861f", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "22e15a80-fd49-4b03-8de2-e88278255fa4" + "x-ms-correlation-request-id" : "ea71f640-dbd5-4038-ad9f-e5bed630a32e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181631Z:8d59e1e8-517b-4078-a5ce-4a8a2841601b", + "x-ms-routing-request-id" : "WESTUS2:20180619T051948Z:d04d0ad5-640f-4ace-b9bd-f1dcfec4a313", "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "date" : "Wed, 28 Mar 2018 18:16:30 GMT", + "date" : "Tue, 19 Jun 2018 05:19:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "8a35c768-c2ae-40e7-bca2-d77833c8102c", + "x-ms-request-id" : "9eed5553-00b0-4479-b61a-6e8bca981bb5", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d59e1e8-517b-4078-a5ce-4a8a2841601b" + "x-ms-correlation-request-id" : "d04d0ad5-640f-4ace-b9bd-f1dcfec4a313" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181701Z:2c42f0c2-c9ce-49c0-b19c-eee133b3eca3", + "x-ms-routing-request-id" : "WESTUS2:20180619T052018Z:788dcdb1-c184-431f-8ed6-125def248b04", "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "date" : "Wed, 28 Mar 2018 18:17:00 GMT", + "date" : "Tue, 19 Jun 2018 05:20:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "3aed0621-56aa-4e26-84dd-77e45c4e8fdd", + "x-ms-request-id" : "96dbb538-9182-487d-8090-fd68fb925788", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2c42f0c2-c9ce-49c0-b19c-eee133b3eca3" + "x-ms-correlation-request-id" : "788dcdb1-c184-431f-8ed6-125def248b04" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181731Z:44aad38b-385b-4aa9-89fe-674dc47083ef", + "x-ms-routing-request-id" : "WESTUS2:20180619T052049Z:43955c5b-0c40-4aa0-a313-4e88c8be9e18", "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "date" : "Wed, 28 Mar 2018 18:17:31 GMT", + "date" : "Tue, 19 Jun 2018 05:20:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "025cf8bf-a449-42d0-87d4-e8b5fe482889", + "x-ms-request-id" : "efa48992-c09f-4db9-b5d1-16229e164483", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "44aad38b-385b-4aa9-89fe-674dc47083ef" + "x-ms-correlation-request-id" : "43955c5b-0c40-4aa0-a313-4e88c8be9e18" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181801Z:02c9f44a-24cb-4083-809a-e055d06794ff", + "x-ms-routing-request-id" : "WESTUS2:20180619T052119Z:29425813-a5cb-46d8-aed6-0a60260ae365", "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "date" : "Wed, 28 Mar 2018 18:18:00 GMT", + "date" : "Tue, 19 Jun 2018 05:21:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "81bda122-52fb-4acb-9a19-30d508c5cb7c", + "x-ms-request-id" : "421052c5-863d-4d6e-aacc-6cc9267891e6", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "02c9f44a-24cb-4083-809a-e055d06794ff" + "x-ms-correlation-request-id" : "29425813-a5cb-46d8-aed6-0a60260ae365" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181831Z:8b6386a4-bf5d-458a-b46d-748354d7a27d", + "x-ms-routing-request-id" : "WESTUS2:20180619T052149Z:bc1c9c7e-932e-4f29-832d-04a4bd3b7c3d", "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "date" : "Wed, 28 Mar 2018 18:18:31 GMT", + "date" : "Tue, 19 Jun 2018 05:21:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "52a946f9-85b8-4b2f-b8cf-189cc26ec739", + "x-ms-request-id" : "673b4a45-83ea-42cb-98e7-83a5ce034114", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b6386a4-bf5d-458a-b46d-748354d7a27d" + "x-ms-correlation-request-id" : "bc1c9c7e-932e-4f29-832d-04a4bd3b7c3d" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181902Z:d9c863d6-341a-44ab-9c19-bf847f6af7c9", + "x-ms-routing-request-id" : "WESTUS2:20180619T052219Z:d0d45e66-35ee-4161-864c-7c3a26ca6675", "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "date" : "Wed, 28 Mar 2018 18:19:01 GMT", + "date" : "Tue, 19 Jun 2018 05:22:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ff30c0e4-23c3-4ac3-9c88-6a171d640426", + "x-ms-request-id" : "7f0cd1d7-dc37-4e81-b601-a44c7ac2da21", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d9c863d6-341a-44ab-9c19-bf847f6af7c9" + "x-ms-correlation-request-id" : "d0d45e66-35ee-4161-864c-7c3a26ca6675" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T181932Z:0058a61a-5a5d-4865-9db8-a3f3ce9ce2d7", + "x-ms-routing-request-id" : "WESTUS2:20180619T052250Z:7f73428f-69c2-4ea4-953b-5d3c657af403", "x-ms-ratelimit-remaining-subscription-reads" : "14974", - "date" : "Wed, 28 Mar 2018 18:19:31 GMT", + "date" : "Tue, 19 Jun 2018 05:22:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "938195e2-d23d-41ee-90ec-6500e349d3de", + "x-ms-request-id" : "b9bd5153-0639-4f17-8e64-eadbd4e6a1ea", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0058a61a-5a5d-4865-9db8-a3f3ce9ce2d7" + "x-ms-correlation-request-id" : "7f73428f-69c2-4ea4-953b-5d3c657af403" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182002Z:622d6456-9c17-4dc4-b9a3-7cddd4b386b8", + "x-ms-routing-request-id" : "WESTUS2:20180619T052320Z:e2ea0410-3784-4e58-bd31-a35e39d63dc7", "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "date" : "Wed, 28 Mar 2018 18:20:02 GMT", + "date" : "Tue, 19 Jun 2018 05:23:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "08556c12-fc54-45d4-88b5-cb2e4cdf084c", + "x-ms-request-id" : "8ad90019-a787-4f13-bfd7-e39b502b79f7", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "622d6456-9c17-4dc4-b9a3-7cddd4b386b8" + "x-ms-correlation-request-id" : "e2ea0410-3784-4e58-bd31-a35e39d63dc7" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182032Z:d8fd394e-ee8f-475c-801b-422623434286", + "x-ms-routing-request-id" : "WESTUS2:20180619T052350Z:9dfa82b9-6a2b-4cfb-b6ae-b644f472fdda", "x-ms-ratelimit-remaining-subscription-reads" : "14972", - "date" : "Wed, 28 Mar 2018 18:20:31 GMT", + "date" : "Tue, 19 Jun 2018 05:23:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "da1544ed-8dc0-4470-a007-74e32368a3a4", + "x-ms-request-id" : "8d5f19df-af1e-4d5c-9aa6-e48489096774", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d8fd394e-ee8f-475c-801b-422623434286" + "x-ms-correlation-request-id" : "9dfa82b9-6a2b-4cfb-b6ae-b644f472fdda" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182102Z:8bbcd344-1726-4f18-88fd-3e6a72bb1603", + "x-ms-routing-request-id" : "WESTUS2:20180619T052420Z:07f77351-dac6-4c5a-b33b-b21bb0fde1a1", "x-ms-ratelimit-remaining-subscription-reads" : "14971", - "date" : "Wed, 28 Mar 2018 18:21:01 GMT", + "date" : "Tue, 19 Jun 2018 05:24:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "29431750-3c9d-4b58-9943-8df406800947", + "x-ms-request-id" : "cd4d7263-c0d6-4841-8f06-0ea0a27e4472", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8bbcd344-1726-4f18-88fd-3e6a72bb1603" + "x-ms-correlation-request-id" : "07f77351-dac6-4c5a-b33b-b21bb0fde1a1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182132Z:2d9431ee-e603-46ec-876b-fd1a5fc8723a", + "x-ms-routing-request-id" : "WESTUS2:20180619T052450Z:293eff56-0f82-4ea2-b710-539efb2315ef", "x-ms-ratelimit-remaining-subscription-reads" : "14970", - "date" : "Wed, 28 Mar 2018 18:21:31 GMT", + "date" : "Tue, 19 Jun 2018 05:24:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "7f262a21-5f3a-4475-b40a-de4e3c3f3225", + "x-ms-request-id" : "0f13379b-0f30-47d6-9c75-512c79d96f15", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2d9431ee-e603-46ec-876b-fd1a5fc8723a" + "x-ms-correlation-request-id" : "293eff56-0f82-4ea2-b710-539efb2315ef" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182203Z:b35f8de7-9e3e-4550-a304-cd7c8afbdb2f", + "x-ms-routing-request-id" : "WESTUS2:20180619T052520Z:ac3c0122-55f9-4de1-8d6f-7926f5c7090a", "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "date" : "Wed, 28 Mar 2018 18:22:02 GMT", + "date" : "Tue, 19 Jun 2018 05:25:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ecfec048-5931-46f4-ae4b-2d21b8d9d717", + "x-ms-request-id" : "42c58e83-080d-40d4-8116-80e94d9e3d94", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b35f8de7-9e3e-4550-a304-cd7c8afbdb2f" + "x-ms-correlation-request-id" : "ac3c0122-55f9-4de1-8d6f-7926f5c7090a" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182233Z:758697ce-2681-47a9-884a-a4751b373234", + "x-ms-routing-request-id" : "WESTUS2:20180619T052551Z:d52ae7e2-c7a5-473b-913c-3d90bb9f6f9a", "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "date" : "Wed, 28 Mar 2018 18:22:32 GMT", + "date" : "Tue, 19 Jun 2018 05:25:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "14395d00-d929-417a-aab1-4d313e75ca5e", + "x-ms-request-id" : "aecf9129-244c-40f7-9425-862dbc88e762", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "758697ce-2681-47a9-884a-a4751b373234" + "x-ms-correlation-request-id" : "d52ae7e2-c7a5-473b-913c-3d90bb9f6f9a" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182303Z:55417d18-6099-4cbb-a244-cd4ce8be23f8", + "x-ms-routing-request-id" : "WESTUS2:20180619T052621Z:1939b7e2-8af4-41b4-b319-de65d1346869", "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "date" : "Wed, 28 Mar 2018 18:23:02 GMT", + "date" : "Tue, 19 Jun 2018 05:26:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "18393d71-e33a-4d73-ac3d-c7efe5e272e2", + "x-ms-request-id" : "01e4f88d-eeec-44aa-a3fd-3796d3215421", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "55417d18-6099-4cbb-a244-cd4ce8be23f8" + "x-ms-correlation-request-id" : "1939b7e2-8af4-41b4-b319-de65d1346869" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182333Z:61b393cc-1c38-48ec-bc16-58abdc4dc82d", + "x-ms-routing-request-id" : "WESTUS2:20180619T052651Z:60db14a3-3559-4a5c-bb90-bb85c84ef25d", "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "date" : "Wed, 28 Mar 2018 18:23:32 GMT", + "date" : "Tue, 19 Jun 2018 05:26:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2b08869b-3e60-48c6-9456-2db64495bc3c", + "x-ms-request-id" : "0ee6c6a5-2d68-4867-aa36-6cb3338107c6", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "61b393cc-1c38-48ec-bc16-58abdc4dc82d" + "x-ms-correlation-request-id" : "60db14a3-3559-4a5c-bb90-bb85c84ef25d" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182403Z:6851989c-ccb6-48c1-9df3-3706987352ff", + "x-ms-routing-request-id" : "WESTUS2:20180619T052721Z:1605c621-e76e-45cc-82ab-252bd07b180e", "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "date" : "Wed, 28 Mar 2018 18:24:03 GMT", + "date" : "Tue, 19 Jun 2018 05:27:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "47d0dc93-57b6-4dfb-981f-80d0472f200e", + "x-ms-request-id" : "27567567-c80c-4529-9db9-ee38fe009ea3", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6851989c-ccb6-48c1-9df3-3706987352ff" + "x-ms-correlation-request-id" : "1605c621-e76e-45cc-82ab-252bd07b180e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182433Z:debbb9d5-7721-4f82-ab9b-3a601bd889c8", + "x-ms-routing-request-id" : "WESTUS2:20180619T052751Z:db7eebdd-0994-4d97-b6c6-8a883ffcdf32", "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "date" : "Wed, 28 Mar 2018 18:24:33 GMT", + "date" : "Tue, 19 Jun 2018 05:27:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "75a64a45-8e50-41fe-bf51-806ac5a1b6fe", + "x-ms-request-id" : "69a7f52f-d934-4474-8a6f-975100537315", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "debbb9d5-7721-4f82-ab9b-3a601bd889c8" + "x-ms-correlation-request-id" : "db7eebdd-0994-4d97-b6c6-8a883ffcdf32" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182504Z:2fbe8365-60d2-451a-b35a-a52070b84ccf", + "x-ms-routing-request-id" : "WESTUS2:20180619T052821Z:7406357f-7f0a-4207-93dd-8cadc6e7bb5a", "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "date" : "Wed, 28 Mar 2018 18:25:03 GMT", + "date" : "Tue, 19 Jun 2018 05:28:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "27774888-89b0-4e72-8493-d9377dd80620", + "x-ms-request-id" : "dcc4b44b-4ad5-4423-86f9-5976d2f2fc3c", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2fbe8365-60d2-451a-b35a-a52070b84ccf" + "x-ms-correlation-request-id" : "7406357f-7f0a-4207-93dd-8cadc6e7bb5a" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182534Z:ce067ddb-639b-450f-bab0-56236cd0420f", + "x-ms-routing-request-id" : "WESTUS2:20180619T052852Z:fc66c915-9e06-4500-8786-0d7e9411db28", "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "date" : "Wed, 28 Mar 2018 18:25:33 GMT", + "date" : "Tue, 19 Jun 2018 05:28:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "ebd68ad4-9c61-47e1-9c75-54072ce5decd", + "x-ms-request-id" : "0607d2d8-3fc0-4f98-a461-f9a57e4796bf", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce067ddb-639b-450f-bab0-56236cd0420f" + "x-ms-correlation-request-id" : "fc66c915-9e06-4500-8786-0d7e9411db28" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182604Z:05ce3935-bac8-47ed-9723-815272175005", + "x-ms-routing-request-id" : "WESTUS2:20180619T052922Z:ce96d511-e7d7-4c55-a85d-2936f4551508", "x-ms-ratelimit-remaining-subscription-reads" : "14961", - "date" : "Wed, 28 Mar 2018 18:26:03 GMT", + "date" : "Tue, 19 Jun 2018 05:29:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "9149bf0a-bc6b-4669-90b1-b63c16c3d39b", + "x-ms-request-id" : "39dfd8de-60e2-43c9-a102-f0241e1ad3db", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "05ce3935-bac8-47ed-9723-815272175005" + "x-ms-correlation-request-id" : "ce96d511-e7d7-4c55-a85d-2936f4551508" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182634Z:0e3e112a-2ce5-4ccc-a241-235acb458618", + "x-ms-routing-request-id" : "WESTUS2:20180619T052952Z:d1108f0d-3722-4bd2-9042-81ef28aa3f53", "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "date" : "Wed, 28 Mar 2018 18:26:34 GMT", + "date" : "Tue, 19 Jun 2018 05:29:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "672a86a4-ac03-4999-957e-5a546c919391", + "x-ms-request-id" : "176876af-e3c8-40c6-8855-5ce408d3c8a1", "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0e3e112a-2ce5-4ccc-a241-235acb458618" + "x-ms-correlation-request-id" : "d1108f0d-3722-4bd2-9042-81ef28aa3f53" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182704Z:c28ff476-a3c3-4698-929a-cf38b0467a67", + "x-ms-routing-request-id" : "WESTUS2:20180619T053022Z:dbf437a3-55c9-47e7-95b2-d373e376e302", "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "date" : "Wed, 28 Mar 2018 18:27:04 GMT", + "date" : "Tue, 19 Jun 2018 05:30:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c3364741-6c84-476a-8a88-838eb715507e", - "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "013eaf95-d043-4577-aefd-07672f2c3555", + "content-length" : "624", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c28ff476-a3c3-4698-929a-cf38b0467a67" + "x-ms-correlation-request-id" : "dbf437a3-55c9-47e7-95b2-d373e376e302" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/Redis?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182734Z:a1b5528b-6ed7-4767-a44c-48bf5be30c3c", + "x-ms-routing-request-id" : "WESTUS2:20180619T053023Z:e0f4d78d-e070-4672-a31a-7f61e4028da1", "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "date" : "Wed, 28 Mar 2018 18:27:34 GMT", + "date" : "Tue, 19 Jun 2018 05:30:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a7dd707e-2f79-45a2-a3de-aa26d07bec9e", - "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "bf8b02b5-23b4-4660-9208-1af91b02e52b", + "content-length" : "636", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a1b5528b-6ed7-4767-a44c-48bf5be30c3c" + "x-ms-correlation-request-id" : "e0f4d78d-e070-4672-a31a-7f61e4028da1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061/patchSchedules?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Creating\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182805Z:7ba80689-14f1-4c8b-a2b7-18f3293202d4", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'redis906061'.\\r\\nRequestID=dcfc81e1-c874-476e-b37c-cc52bc299d82\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180619T053023Z:d76eab58-4556-4a17-9f1f-e87b8c1e4ea0", "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "date" : "Wed, 28 Mar 2018 18:28:05 GMT", - "vary" : "Accept-Encoding", + "date" : "Tue, 19 Jun 2018 05:30:22 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "8c95c785-7edb-4f02-a32b-a154077ae56c", - "content-length" : "623", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "dcfc81e1-c874-476e-b37c-cc52bc299d82", + "content-length" : "179", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7ba80689-14f1-4c8b-a2b7-18f3293202d4" + "x-ms-correlation-request-id" : "d76eab58-4556-4a17-9f1f-e87b8c1e4ea0" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061/firewallRules?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"value\":[]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182835Z:7981d687-a9fc-422a-8ddc-708c006ab6ba", + "x-ms-routing-request-id" : "WESTUS2:20180619T053023Z:b12ba79d-3ec9-48ba-9dc5-236d195ac6a2", "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "date" : "Wed, 28 Mar 2018 18:28:34 GMT", + "date" : "Tue, 19 Jun 2018 05:30:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "4cc5a84e-50c5-453d-a348-0f37bd5cb19d", - "content-length" : "624", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "3e067ad0-c99c-44f6-bf86-cfb9ceb6e545", + "content-length" : "12", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7981d687-a9fc-422a-8ddc-708c006ab6ba" + "x-ms-correlation-request-id" : "b12ba79d-3ec9-48ba-9dc5-236d195ac6a2" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/Redis?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1166,53 +1247,53 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redisjfzg5dlfcbaqicnigjkneg6ozyuh7pqihkvnutuvvrzfrtjycy55ki2pc3xrp/providers/Microsoft.Cache/Redis/redis3rcbkbbyupn6yf4ytba\",\"location\":\"West US\",\"name\":\"redis3rcbkbbyupn6yf4ytba\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis3rcbkbbyupn6yf4ytba.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_redisjfzg5dlfcbaqicnigjkneg6ozyuh7pqihkvnutuvvrzfrtjycy55ki2pc3xrp/providers/Microsoft.Cache/Redis/redis6kksmoavpfx3x2jtk3x\",\"location\":\"West US\",\"name\":\"redis6kksmoavpfx3x2jtk3x\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Basic\",\"family\":\"C\",\"capacity\":1},\"enableNonSslPort\":false,\"tenantSettings\":{\"hello\":\"1\"},\"redisConfiguration\":{\"maxclients\":\"1000\",\"maxmemory-reserved\":\"50\",\"maxfragmentationmemory-reserved\":\"50\",\"maxmemory-delta\":\"50\"},\"accessKeys\":null,\"hostName\":\"redis6kksmoavpfx3x2jtk3x.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}]}", - "x-ms-routing-request-id" : "WESTUS2:20180328T182835Z:de34a403-9334-482e-8c9d-3c83bbc4ad40", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T053023Z:1925936b-5795-48ab-b291-5392c78dfad0", "x-ms-ratelimit-remaining-subscription-reads" : "14955", - "date" : "Wed, 28 Mar 2018 18:28:34 GMT", + "date" : "Tue, 19 Jun 2018 05:30:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "de34a403-9334-482e-8c9d-3c83bbc4ad40", - "content-length" : "2076", + "x-ms-request-id" : "e0e76d3d-29d3-4122-b953-0f1b386c19d6", + "content-length" : "624", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-original-request-ids" : "d2ea9a80-e017-4a98-9205-6446e6b0f570", - "x-ms-correlation-request-id" : "de34a403-9334-482e-8c9d-3c83bbc4ad40" + "x-ms-correlation-request-id" : "1925936b-5795-48ab-b291-5392c78dfad0" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061/patchSchedules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182835Z:281cea16-a18b-41d6-a5eb-54e2f4afc8fb", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'redis906061'.\\r\\nRequestID=85261be6-32fb-4ed7-83bb-92d5e95a9881\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180619T053023Z:d0360102-c21c-4835-a5d5-5d258875124e", "x-ms-ratelimit-remaining-subscription-reads" : "14954", - "date" : "Wed, 28 Mar 2018 18:28:34 GMT", - "vary" : "Accept-Encoding", + "date" : "Tue, 19 Jun 2018 05:30:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e218197b-472d-4266-b350-2363657f0fd2", - "content-length" : "624", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "85261be6-32fb-4ed7-83bb-92d5e95a9881", + "content-length" : "179", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "281cea16-a18b-41d6-a5eb-54e2f4afc8fb" + "x-ms-correlation-request-id" : "d0360102-c21c-4835-a5d5-5d258875124e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061/firewallRules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1220,27 +1301,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"value\":[]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182835Z:5a20a78d-8b06-4337-a703-bc4e1c91b972", + "x-ms-routing-request-id" : "WESTUS2:20180619T053023Z:723cd50f-76f0-4666-b8fe-aae5fe613791", "x-ms-ratelimit-remaining-subscription-reads" : "14953", - "date" : "Wed, 28 Mar 2018 18:28:35 GMT", + "date" : "Tue, 19 Jun 2018 05:30:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a0fdb60e-fae2-4d22-909a-2c0c7ec38beb", - "content-length" : "624", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "61771f04-2205-4d07-851e-8a84cdba4ab4", + "content-length" : "12", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5a20a78d-8b06-4337-a703-bc4e1c91b972" + "x-ms-correlation-request-id" : "723cd50f-76f0-4666-b8fe-aae5fe613791" } }, { - "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1248,55 +1329,53 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182836Z:3fc0f345-e03c-48e1-b385-5473efeeaaeb", - "date" : "Wed, 28 Mar 2018 18:28:35 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T053024Z:e1763ec4-90cc-470f-adcf-5e3a72e52255", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "date" : "Tue, 19 Jun 2018 05:30:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "9f7c27f3-fe0a-4634-87f0-099c7b7dfd13", - "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "f28dd497-defc-4551-8b26-eeb28d2eaacb", + "content-length" : "624", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3fc0f345-e03c-48e1-b385-5473efeeaaeb" + "x-ms-correlation-request-id" : "e1763ec4-90cc-470f-adcf-5e3a72e52255" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061/patchSchedules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182906Z:24d23921-230a-4ecd-a6ab-6c4eb43f1fb8", - "x-ms-ratelimit-remaining-subscription-reads" : "14952", - "date" : "Wed, 28 Mar 2018 18:29:05 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"There are no patch schedules found for redis cache 'redis906061'.\\r\\nRequestID=b28a0407-6667-47b2-8916-41a87dd4e73d\",\"target\":null}}", + "x-ms-routing-request-id" : "WESTUS2:20180619T053024Z:5d597bc4-c783-4883-9629-a1bee2ad68a1", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "date" : "Tue, 19 Jun 2018 05:30:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d0a784e4-2c32-4476-9f3f-db0473031bf1", - "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "b28a0407-6667-47b2-8916-41a87dd4e73d", + "content-length" : "179", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "24d23921-230a-4ecd-a6ab-6c4eb43f1fb8" + "x-ms-correlation-request-id" : "5d597bc4-c783-4883-9629-a1bee2ad68a1" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061/firewallRules?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1304,27 +1383,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"value\":[]}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T182936Z:8e166b47-3a04-4566-873a-398242475494", - "x-ms-ratelimit-remaining-subscription-reads" : "14951", - "date" : "Wed, 28 Mar 2018 18:29:36 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T053024Z:b1112179-b032-416a-b3b9-b58bb2f65693", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "date" : "Tue, 19 Jun 2018 05:30:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "e90b33e2-3322-4da1-95f3-fe9beb932b30", - "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "044e9f06-ace7-44ca-8145-e2d9e118d081", + "content-length" : "12", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e166b47-3a04-4566-873a-398242475494" + "x-ms-correlation-request-id" : "b1112179-b032-416a-b3b9-b58bb2f65693" } }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Method" : "PATCH", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1332,27 +1411,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183006Z:a83fd99f-c0c7-4830-bd16-cfbcb1cc6502", - "x-ms-ratelimit-remaining-subscription-reads" : "14950", - "date" : "Wed, 28 Mar 2018 18:30:06 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T053025Z:1c10dd7e-a6b5-4d34-a31a-ddd895ea953e", + "date" : "Tue, 19 Jun 2018 05:30:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a0f42127-6932-4270-a6f3-a48728fb889e", + "x-ms-request-id" : "727662b2-7cc7-4f76-b547-5edbce4fffb2", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a83fd99f-c0c7-4830-bd16-cfbcb1cc6502" + "x-ms-correlation-request-id" : "1c10dd7e-a6b5-4d34-a31a-ddd895ea953e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1360,27 +1439,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183036Z:3a4cf91e-176b-47ee-a14e-8aff5ac96da7", + "x-ms-routing-request-id" : "WESTUS2:20180619T053055Z:753b25fb-cfae-4a40-8735-0ca33e219a98", "x-ms-ratelimit-remaining-subscription-reads" : "14949", - "date" : "Wed, 28 Mar 2018 18:30:36 GMT", + "date" : "Tue, 19 Jun 2018 05:30:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0f1aca5a-41e2-4f83-8362-cb1e9a41130c", + "x-ms-request-id" : "1248898a-bc14-49eb-a1f8-90ab481a8288", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a4cf91e-176b-47ee-a14e-8aff5ac96da7" + "x-ms-correlation-request-id" : "753b25fb-cfae-4a40-8735-0ca33e219a98" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1388,27 +1467,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183106Z:085a8e0f-dd7c-4559-9ec6-79d58f4e315f", + "x-ms-routing-request-id" : "WESTUS2:20180619T053125Z:622d6231-17f9-4086-adf4-36bc4c8d6f42", "x-ms-ratelimit-remaining-subscription-reads" : "14948", - "date" : "Wed, 28 Mar 2018 18:31:06 GMT", + "date" : "Tue, 19 Jun 2018 05:31:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "68077d52-fd9b-4652-b616-dab8fccf89fb", + "x-ms-request-id" : "41783b6e-5f72-462d-a783-b72e7813e375", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "085a8e0f-dd7c-4559-9ec6-79d58f4e315f" + "x-ms-correlation-request-id" : "622d6231-17f9-4086-adf4-36bc4c8d6f42" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1416,27 +1495,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183136Z:66a46778-7830-4c9a-9b26-b789594efcd8", + "x-ms-routing-request-id" : "WESTUS2:20180619T053155Z:fc6ecfe4-0a24-4442-b06b-db014b923f66", "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "date" : "Wed, 28 Mar 2018 18:31:36 GMT", + "date" : "Tue, 19 Jun 2018 05:31:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d3edf0c3-9de1-416e-80cc-c2fe8ab94b0d", + "x-ms-request-id" : "8efff7ca-e7c4-4d86-ad37-9b1bc39efc6a", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "66a46778-7830-4c9a-9b26-b789594efcd8" + "x-ms-correlation-request-id" : "fc6ecfe4-0a24-4442-b06b-db014b923f66" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1444,27 +1523,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183207Z:3a360b69-ed0c-4d5f-9b40-c61d7cebec3a", + "x-ms-routing-request-id" : "WESTUS2:20180619T053226Z:bbb592ed-a3af-452f-aec7-d2bc01817655", "x-ms-ratelimit-remaining-subscription-reads" : "14946", - "date" : "Wed, 28 Mar 2018 18:32:07 GMT", + "date" : "Tue, 19 Jun 2018 05:32:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "7f377b80-b4d7-4b4a-b96d-1cf701097b5b", + "x-ms-request-id" : "aecab7e4-4a91-4285-beb0-4a2c46d56808", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a360b69-ed0c-4d5f-9b40-c61d7cebec3a" + "x-ms-correlation-request-id" : "bbb592ed-a3af-452f-aec7-d2bc01817655" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1472,27 +1551,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183237Z:93a1bcb9-a1ef-46b8-aa3b-a6cfb9b06b6e", + "x-ms-routing-request-id" : "WESTUS2:20180619T053256Z:e65342e3-6784-46d4-b6f7-777e95a2937f", "x-ms-ratelimit-remaining-subscription-reads" : "14945", - "date" : "Wed, 28 Mar 2018 18:32:36 GMT", + "date" : "Tue, 19 Jun 2018 05:32:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d31d6471-97de-4c8a-8063-95acc07a0d05", + "x-ms-request-id" : "728c2fdf-cb2f-4e64-976d-5c62533d0bf2", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "93a1bcb9-a1ef-46b8-aa3b-a6cfb9b06b6e" + "x-ms-correlation-request-id" : "e65342e3-6784-46d4-b6f7-777e95a2937f" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1500,27 +1579,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183307Z:a15a4c49-7fd4-4f3f-a916-0c962647de6c", + "x-ms-routing-request-id" : "WESTUS2:20180619T053327Z:2748cdd7-3d93-4d38-85ef-294725de7567", "x-ms-ratelimit-remaining-subscription-reads" : "14944", - "date" : "Wed, 28 Mar 2018 18:33:06 GMT", + "date" : "Tue, 19 Jun 2018 05:33:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "9cc6cb7f-e77c-4fc4-9c4a-2e333ccb032f", + "x-ms-request-id" : "65dbaa97-4543-409a-b79a-72f6b9d7cbdd", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a15a4c49-7fd4-4f3f-a916-0c962647de6c" + "x-ms-correlation-request-id" : "2748cdd7-3d93-4d38-85ef-294725de7567" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1528,27 +1607,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183337Z:5e31510f-3b68-4909-93a5-43e8233ba8e5", + "x-ms-routing-request-id" : "WESTUS2:20180619T053357Z:e73ca05d-d36f-4e04-a927-cf32fcbaf3f7", "x-ms-ratelimit-remaining-subscription-reads" : "14943", - "date" : "Wed, 28 Mar 2018 18:33:37 GMT", + "date" : "Tue, 19 Jun 2018 05:33:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "d818a151-667e-4280-a550-4c9d38e5392f", + "x-ms-request-id" : "132d64cf-99d1-4455-9a6a-e5ff23cb141b", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5e31510f-3b68-4909-93a5-43e8233ba8e5" + "x-ms-correlation-request-id" : "e73ca05d-d36f-4e04-a927-cf32fcbaf3f7" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1556,27 +1635,55 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183407Z:b262d0a8-d978-40a3-b2db-2cdc644a6118", + "x-ms-routing-request-id" : "WESTUS2:20180619T053427Z:a50447de-b40a-4197-be53-fafcce7a87fb", "x-ms-ratelimit-remaining-subscription-reads" : "14942", - "date" : "Wed, 28 Mar 2018 18:34:07 GMT", + "date" : "Tue, 19 Jun 2018 05:34:27 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "4355b201-e2c2-4f1b-a420-253aa6087598", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a50447de-b40a-4197-be53-fafcce7a87fb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T053457Z:ce1adda3-5d4f-48fb-b5a8-c12f378dca7b", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "date" : "Tue, 19 Jun 2018 05:34:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "c567ba8e-06c9-4df8-9bcd-350b9b882707", + "x-ms-request-id" : "a040b6e6-03a7-4f27-876b-c72ea044fab9", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b262d0a8-d978-40a3-b2db-2cdc644a6118" + "x-ms-correlation-request-id" : "ce1adda3-5d4f-48fb-b5a8-c12f378dca7b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1584,27 +1691,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183437Z:1dc624fc-d1e7-4756-a90d-3c7a659e92f7", + "x-ms-routing-request-id" : "WESTUS2:20180619T053527Z:762dcfbf-8e33-4436-81f6-af837ad9b5a5", "x-ms-ratelimit-remaining-subscription-reads" : "14940", - "date" : "Wed, 28 Mar 2018 18:34:37 GMT", + "date" : "Tue, 19 Jun 2018 05:35:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f506c8c5-7484-42c9-aa53-58209cf9481f", + "x-ms-request-id" : "aabea9cc-4f8a-4399-a79a-1913c2efb171", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1dc624fc-d1e7-4756-a90d-3c7a659e92f7" + "x-ms-correlation-request-id" : "762dcfbf-8e33-4436-81f6-af837ad9b5a5" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1612,27 +1719,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183508Z:3b5ef4d9-db83-4a88-82b0-c277fa35c456", + "x-ms-routing-request-id" : "WESTUS2:20180619T053558Z:4d1e720d-a589-4f5d-9a1f-602bdd3ac371", "x-ms-ratelimit-remaining-subscription-reads" : "14939", - "date" : "Wed, 28 Mar 2018 18:35:07 GMT", + "date" : "Tue, 19 Jun 2018 05:35:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "012feb05-0827-4c80-bb69-06e9beeddafb", + "x-ms-request-id" : "29f84a27-82d2-428d-9066-c65c85883452", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3b5ef4d9-db83-4a88-82b0-c277fa35c456" + "x-ms-correlation-request-id" : "4d1e720d-a589-4f5d-9a1f-602bdd3ac371" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1640,27 +1747,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183538Z:9191d361-b5c9-4ed0-98a3-abe87348fe0e", + "x-ms-routing-request-id" : "WESTUS2:20180619T053628Z:e335c892-9237-4022-9123-5102778f3dd4", "x-ms-ratelimit-remaining-subscription-reads" : "14938", - "date" : "Wed, 28 Mar 2018 18:35:37 GMT", + "date" : "Tue, 19 Jun 2018 05:36:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "cae20a65-3cac-49cf-9b17-a3108c0d9b3f", + "x-ms-request-id" : "8f77d831-211e-4e86-be11-319eebc53094", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9191d361-b5c9-4ed0-98a3-abe87348fe0e" + "x-ms-correlation-request-id" : "e335c892-9237-4022-9123-5102778f3dd4" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1668,27 +1775,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183608Z:83b24436-0ceb-45f3-a47a-0f1bc7b4d2e6", + "x-ms-routing-request-id" : "WESTUS2:20180619T053658Z:968c1b42-b2f7-4687-b14e-2b6bc7e2dd37", "x-ms-ratelimit-remaining-subscription-reads" : "14937", - "date" : "Wed, 28 Mar 2018 18:36:07 GMT", + "date" : "Tue, 19 Jun 2018 05:36:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "2b2e883b-dfdf-4b26-8af9-4511e6d01b2d", + "x-ms-request-id" : "0b9eb6e2-1b06-4fda-ae15-3abd0bb0447c", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "83b24436-0ceb-45f3-a47a-0f1bc7b4d2e6" + "x-ms-correlation-request-id" : "968c1b42-b2f7-4687-b14e-2b6bc7e2dd37" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1696,27 +1803,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183638Z:7442c338-8b41-4537-af7c-252dd746bc8e", + "x-ms-routing-request-id" : "WESTUS2:20180619T053729Z:6d6fbb21-1679-4528-a82d-25b62505702c", "x-ms-ratelimit-remaining-subscription-reads" : "14936", - "date" : "Wed, 28 Mar 2018 18:36:37 GMT", + "date" : "Tue, 19 Jun 2018 05:37:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "8f112d34-cb91-4bca-b77e-1d6ca5402119", + "x-ms-request-id" : "f531871b-6a9c-486f-b09d-23e95ef6ad9f", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7442c338-8b41-4537-af7c-252dd746bc8e" + "x-ms-correlation-request-id" : "6d6fbb21-1679-4528-a82d-25b62505702c" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1724,27 +1831,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183708Z:cc7bac1e-cd3d-491e-a46d-7f22faf486d5", + "x-ms-routing-request-id" : "WESTUS2:20180619T053759Z:56d36098-3463-4011-93f3-85905959fc76", "x-ms-ratelimit-remaining-subscription-reads" : "14935", - "date" : "Wed, 28 Mar 2018 18:37:07 GMT", + "date" : "Tue, 19 Jun 2018 05:37:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "18b81163-7904-4f8c-af95-ddb41e956943", + "x-ms-request-id" : "9f3b1628-be95-4024-af03-09cc9d5b07d4", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cc7bac1e-cd3d-491e-a46d-7f22faf486d5" + "x-ms-correlation-request-id" : "56d36098-3463-4011-93f3-85905959fc76" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1752,27 +1859,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183738Z:675d9067-7653-4db5-882f-2914da46a4b2", + "x-ms-routing-request-id" : "WESTUS2:20180619T053829Z:78407b5e-35db-498a-8e5c-72eac8e86b9b", "x-ms-ratelimit-remaining-subscription-reads" : "14934", - "date" : "Wed, 28 Mar 2018 18:37:38 GMT", + "date" : "Tue, 19 Jun 2018 05:38:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0f5fd5aa-d49f-4f91-9a81-376a28253842", + "x-ms-request-id" : "464c7ad0-996d-4060-9959-216a79fa1898", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "675d9067-7653-4db5-882f-2914da46a4b2" + "x-ms-correlation-request-id" : "78407b5e-35db-498a-8e5c-72eac8e86b9b" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1780,27 +1887,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183808Z:54e110c8-b000-4746-a43a-53730ba565a9", + "x-ms-routing-request-id" : "WESTUS2:20180619T053900Z:55ec4c1d-b65d-42d8-ae16-cd8c439e932c", "x-ms-ratelimit-remaining-subscription-reads" : "14933", - "date" : "Wed, 28 Mar 2018 18:38:08 GMT", + "date" : "Tue, 19 Jun 2018 05:38:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "8f5ede75-ad6c-4db7-8d2c-64209e0ad524", + "x-ms-request-id" : "e9cac0b9-19f4-429a-924b-8656529ee236", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "54e110c8-b000-4746-a43a-53730ba565a9" + "x-ms-correlation-request-id" : "55ec4c1d-b65d-42d8-ae16-cd8c439e932c" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1808,27 +1915,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183839Z:892391bd-df46-41e1-adf5-0acb323b5687", + "x-ms-routing-request-id" : "WESTUS2:20180619T053930Z:85a55f4b-4ddc-4dc0-bce2-d22107aedc3d", "x-ms-ratelimit-remaining-subscription-reads" : "14932", - "date" : "Wed, 28 Mar 2018 18:38:38 GMT", + "date" : "Tue, 19 Jun 2018 05:39:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a590a581-9f06-45c8-b071-5b71d9aef825", + "x-ms-request-id" : "c98db92a-dd93-4428-b271-cd0601520037", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "892391bd-df46-41e1-adf5-0acb323b5687" + "x-ms-correlation-request-id" : "85a55f4b-4ddc-4dc0-bce2-d22107aedc3d" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1836,27 +1943,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183909Z:44b28e27-338d-4b0c-a677-8d087e939ac9", + "x-ms-routing-request-id" : "WESTUS2:20180619T054000Z:cfe63e31-c9d6-4d3b-8bde-f28121019b3e", "x-ms-ratelimit-remaining-subscription-reads" : "14931", - "date" : "Wed, 28 Mar 2018 18:39:09 GMT", + "date" : "Tue, 19 Jun 2018 05:40:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "238cec67-0e70-4845-a490-89bf65d43144", + "x-ms-request-id" : "c190e3ec-15f6-434b-8b2d-a5c84c421b43", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "44b28e27-338d-4b0c-a677-8d087e939ac9" + "x-ms-correlation-request-id" : "cfe63e31-c9d6-4d3b-8bde-f28121019b3e" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1864,27 +1971,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T183939Z:ac3e121f-99e5-4deb-b415-ced2e1915dbe", + "x-ms-routing-request-id" : "WESTUS2:20180619T054038Z:4a04095a-ecba-4149-bf47-8840aac773ac", "x-ms-ratelimit-remaining-subscription-reads" : "14930", - "date" : "Wed, 28 Mar 2018 18:39:38 GMT", + "date" : "Tue, 19 Jun 2018 05:40:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "baeea188-74a8-479e-aaed-f8827880d166", + "x-ms-request-id" : "6b029b43-444e-4bcd-9aed-aaa8acc6c3e5", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ac3e121f-99e5-4deb-b415-ced2e1915dbe" + "x-ms-correlation-request-id" : "4a04095a-ecba-4149-bf47-8840aac773ac" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1892,27 +1999,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T184009Z:e98ea3ca-ddbf-4295-a8ed-c06dd77ae8db", - "x-ms-ratelimit-remaining-subscription-reads" : "14930", - "date" : "Wed, 28 Mar 2018 18:40:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T054108Z:f1a5eeef-b1b7-4330-93a6-555e207d3668", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "date" : "Tue, 19 Jun 2018 05:41:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "93d0c400-19eb-4a7b-906e-d8c773c0df2c", + "x-ms-request-id" : "38fb339a-b755-4b31-a3d8-73c851835283", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e98ea3ca-ddbf-4295-a8ed-c06dd77ae8db" + "x-ms-correlation-request-id" : "f1a5eeef-b1b7-4330-93a6-555e207d3668" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1920,27 +2027,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T184039Z:46a31b81-483d-48b6-8f94-b647ef175aaf", - "x-ms-ratelimit-remaining-subscription-reads" : "14929", - "date" : "Wed, 28 Mar 2018 18:40:39 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T054138Z:3e80ace7-fa96-4145-b063-6150a435d7da", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "date" : "Tue, 19 Jun 2018 05:41:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a27fbb4a-d80d-40bd-9d12-ef3067d24b88", + "x-ms-request-id" : "c29d625b-0df7-48ca-9181-c8a73deb61fc", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "46a31b81-483d-48b6-8f94-b647ef175aaf" + "x-ms-correlation-request-id" : "3e80ace7-fa96-4145-b063-6150a435d7da" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1948,27 +2055,27 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T184110Z:9bdc9042-3ecb-4bfb-87ad-78d45cfce7f2", - "x-ms-ratelimit-remaining-subscription-reads" : "14928", - "date" : "Wed, 28 Mar 2018 18:41:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T054209Z:795aebaa-d530-4df3-a592-193016d3c188", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "date" : "Tue, 19 Jun 2018 05:42:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "554cadd6-56b3-431d-8792-ca029dbff2ff", + "x-ms-request-id" : "a1dfb542-785c-40ed-b879-a8fcaeb137d9", "content-length" : "622", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9bdc9042-3ecb-4bfb-87ad-78d45cfce7f2" + "x-ms-correlation-request-id" : "795aebaa-d530-4df3-a592-193016d3c188" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" @@ -1976,127 +2083,991 @@ "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994\",\"location\":\"East US\",\"name\":\"redis144994\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"86\",\"maxfragmentationmemory-reserved\":\"519\",\"maxmemory-delta\":\"86\"},\"accessKeys\":null,\"hostName\":\"redis144994.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20180328T184140Z:edc86b44-f078-4cc6-b1e6-1d2b945bce04", - "x-ms-ratelimit-remaining-subscription-reads" : "14927", - "date" : "Wed, 28 Mar 2018 18:41:40 GMT", + "x-ms-routing-request-id" : "WESTUS2:20180619T054239Z:e4f12ff1-1769-4bd0-9589-168cfb0049a3", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "date" : "Tue, 19 Jun 2018 05:42:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "f0b6a5b0-cbee-466e-a8cf-806159afb5e5", - "content-length" : "628", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "4ea32bdb-a9f7-4a13-abd7-7c68f8e29eef", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "edc86b44-f078-4cc6-b1e6-1d2b945bce04" + "x-ms-correlation-request-id" : "e4f12ff1-1769-4bd0-9589-168cfb0049a3" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis144994group/providers/Microsoft.Cache/Redis/redis144994?api-version=2018-03-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/083caed1-cc75-450e-9030-40082f5cc2e7?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180328T184141Z:7518465d-e5cb-4a62-aaf4-dff71e301bc1", - "date" : "Wed, 28 Mar 2018 18:41:41 GMT", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054309Z:060c3a6f-72c3-4162-b84e-69097eed4dbf", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "date" : "Tue, 19 Jun 2018 05:43:09 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "083caed1-cc75-450e-9030-40082f5cc2e7", - "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "b51c1a45-245c-42c0-b384-69d4aee12cf5", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7518465d-e5cb-4a62-aaf4-dff71e301bc1" + "x-ms-correlation-request-id" : "060c3a6f-72c3-4162-b84e-69097eed4dbf" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/083caed1-cc75-450e-9030-40082f5cc2e7?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/083caed1-cc75-450e-9030-40082f5cc2e7?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180328T184141Z:1bc20d65-e4a9-4997-bf87-8d1cc0154c1f", - "x-ms-ratelimit-remaining-subscription-reads" : "14926", - "date" : "Wed, 28 Mar 2018 18:41:41 GMT", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054339Z:7ca3b1dc-a176-46a0-a4cd-a3e77b677149", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "date" : "Tue, 19 Jun 2018 05:43:38 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "92c9f95d-2ebe-46fd-9857-470252af07d6", - "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "ab498ca8-cdd8-4670-b5ad-183457bc6be1", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1bc20d65-e4a9-4997-bf87-8d1cc0154c1f" + "x-ms-correlation-request-id" : "7ca3b1dc-a176-46a0-a4cd-a3e77b677149" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/083caed1-cc75-450e-9030-40082f5cc2e7?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/083caed1-cc75-450e-9030-40082f5cc2e7?api-version=2018-03-01", - "x-ms-routing-request-id" : "WESTUS2:20180328T184211Z:7910de76-9c8e-4e1d-b0b4-ab8c199f2ef2", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "date" : "Wed, 28 Mar 2018 18:42:11 GMT", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054410Z:0dd97608-f979-44e1-acad-7c24e0be7bed", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "date" : "Tue, 19 Jun 2018 05:44:09 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "3dce36cc-0ee9-4092-9e01-1b547329f587", - "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-ms-request-id" : "1d97e6d5-dfb2-4b8f-a08c-63899c1c883e", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7910de76-9c8e-4e1d-b0b4-ab8c199f2ef2" + "x-ms-correlation-request-id" : "0dd97608-f979-44e1-acad-7c24e0be7bed" } }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/083caed1-cc75-450e-9030-40082f5cc2e7?api-version=2018-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", - "Body" : "", - "x-ms-routing-request-id" : "WESTUS2:20180328T184241Z:d6b774ba-ebf8-490a-93c0-f567afb0d26c", - "x-ms-ratelimit-remaining-subscription-reads" : "14924", - "date" : "Wed, 28 Mar 2018 18:42:40 GMT", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054440Z:00d13fb4-0049-4cd5-8ccd-efa416660fd4", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "date" : "Tue, 19 Jun 2018 05:44:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "4ce3a5c8-b330-4cf0-af29-47c2ee40f1e0", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "00d13fb4-0049-4cd5-8ccd-efa416660fd4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054510Z:54028b7d-c86e-4b5b-9f37-4f5f67271376", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "date" : "Tue, 19 Jun 2018 05:45:09 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5c27dbb9-ff3c-4723-9cd9-75df6ef2e06e", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "54028b7d-c86e-4b5b-9f37-4f5f67271376" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054540Z:83d4c5fe-e7f7-417d-b72c-31ba9e5bf252", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "date" : "Tue, 19 Jun 2018 05:45:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f0328c8b-2027-42f3-9c18-7f6dd5580ef9", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "83d4c5fe-e7f7-417d-b72c-31ba9e5bf252" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054610Z:fcac18fc-e9ef-4a9b-a8b2-bc1f83a9a3b1", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", + "date" : "Tue, 19 Jun 2018 05:46:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "715a0031-80c9-4e10-987f-a32325b5e92c", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fcac18fc-e9ef-4a9b-a8b2-bc1f83a9a3b1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054641Z:e2322fde-f59d-4d7e-afe8-74cc2c8c7111", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", + "date" : "Tue, 19 Jun 2018 05:46:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "60c93d65-52d5-4f0b-8d91-406c33875e28", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e2322fde-f59d-4d7e-afe8-74cc2c8c7111" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054711Z:f9e82d98-3241-447f-9064-b89d6c699fd0", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", + "date" : "Tue, 19 Jun 2018 05:47:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a4140264-6ad4-4249-aa40-39a3eb913c0e", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f9e82d98-3241-447f-9064-b89d6c699fd0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054741Z:ff1444f7-0cef-4af3-ab85-06cbb92bb796", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", + "date" : "Tue, 19 Jun 2018 05:47:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "56e4d05e-bfb1-4e2b-b4eb-cb3461b717f7", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ff1444f7-0cef-4af3-ab85-06cbb92bb796" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054811Z:53579a45-d54c-4182-a39d-9c90b4dcc1e4", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", + "date" : "Tue, 19 Jun 2018 05:48:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3b684bd0-a287-4bbc-bcb8-8caa7382bf9a", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "53579a45-d54c-4182-a39d-9c90b4dcc1e4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Scaling\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Standard\",\"family\":\"C\",\"capacity\":0},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"256\",\"maxmemory-reserved\":\"2\",\"maxfragmentationmemory-reserved\":\"12\",\"maxmemory-delta\":\"2\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054841Z:a7d39f78-66b2-4b11-bbb6-9924c701fb5b", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", + "date" : "Tue, 19 Jun 2018 05:48:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "65dc6860-3f75-4b66-9905-4473de517bbf", + "content-length" : "622", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a7d39f78-66b2-4b11-bbb6-9924c701fb5b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061\",\"location\":\"East US\",\"name\":\"redis906061\",\"type\":\"Microsoft.Cache/Redis\",\"tags\":{\"mytag\":\"testtag\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"redisVersion\":\"3.2.7\",\"sku\":{\"name\":\"Premium\",\"family\":\"P\",\"capacity\":2},\"enableNonSslPort\":false,\"redisConfiguration\":{\"maxclients\":\"15000\",\"maxmemory-reserved\":\"86\",\"maxfragmentationmemory-reserved\":\"519\",\"maxmemory-delta\":\"86\"},\"accessKeys\":null,\"hostName\":\"redis906061.redis.cache.windows.net\",\"port\":6379,\"sslPort\":6380,\"linkedServers\":[]}}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20180619T054912Z:b2e75055-42e3-400b-9d59-c9d8cee16628", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", + "date" : "Tue, 19 Jun 2018 05:49:12 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "20efd927-9d2e-4583-8250-ddc4b0a26ba5", + "content-length" : "628", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b2e75055-42e3-400b-9d59-c9d8cee16628" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/redis906061group/providers/Microsoft.Cache/Redis/redis906061?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T054912Z:9b6a148e-5ba5-44a0-a64e-2afb5893a545", + "date" : "Tue, 19 Jun 2018 05:49:12 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "1f1b10ed-7599-4041-b920-4d4ac3af8131", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9b6a148e-5ba5-44a0-a64e-2afb5893a545", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T054913Z:86122dcb-3397-4f65-a66e-e1c368918855", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "date" : "Tue, 19 Jun 2018 05:49:12 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "b58bd0ed-b5d2-4d39-8d5a-230b52b3884c", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "86122dcb-3397-4f65-a66e-e1c368918855" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T054943Z:56cb7f5a-c038-4dbf-b427-e95970ddc0d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "date" : "Tue, 19 Jun 2018 05:49:42 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "77b943c8-8b7e-4f1a-8e43-31ded736dbdb", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "56cb7f5a-c038-4dbf-b427-e95970ddc0d9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055013Z:0e91f140-dbb3-41c7-b4b6-d4c9af170bfd", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "date" : "Tue, 19 Jun 2018 05:50:13 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a442b6d1-8cba-40c2-a7ee-bfb01941fd81", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0e91f140-dbb3-41c7-b4b6-d4c9af170bfd" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055043Z:f3c6e829-814e-4ab8-b39c-029ec30d72e7", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "date" : "Tue, 19 Jun 2018 05:50:42 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a4c275bc-9640-40cb-9b02-b34a0d7c0964", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f3c6e829-814e-4ab8-b39c-029ec30d72e7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055113Z:cd8a0df6-fd3a-402e-a5a8-641838f30b98", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "date" : "Tue, 19 Jun 2018 05:51:12 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "f043153b-432a-4e06-8f3c-d9b9b372132e", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cd8a0df6-fd3a-402e-a5a8-641838f30b98" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055143Z:4eb4b6ce-0277-46f4-9c1b-4b70c2cf0ebd", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "date" : "Tue, 19 Jun 2018 05:51:43 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "54ef360f-211c-4b38-b01f-a6dd79e002bf", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4eb4b6ce-0277-46f4-9c1b-4b70c2cf0ebd" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055213Z:3caa4472-ee2b-4a3c-a933-13a3e4a4a63f", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "date" : "Tue, 19 Jun 2018 05:52:13 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "db015217-648a-4c43-85cb-136c41ddbfe7", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3caa4472-ee2b-4a3c-a933-13a3e4a4a63f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055244Z:84312a1b-ebe5-45f9-bc7d-8b7fa541b5cf", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "date" : "Tue, 19 Jun 2018 05:52:43 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "821840d4-02df-48da-b6a5-e2bdd02edf4e", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "84312a1b-ebe5-45f9-bc7d-8b7fa541b5cf" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055314Z:ce342775-c274-4f6b-b46f-077bb42516e9", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "date" : "Tue, 19 Jun 2018 05:53:13 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "2b80b742-7d97-4b04-bf1a-c4cb0ea97f57", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ce342775-c274-4f6b-b46f-077bb42516e9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055347Z:2e826aa7-83ff-43a5-bb2b-823131f15135", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "date" : "Tue, 19 Jun 2018 05:53:46 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "a538e4d9-5e24-4aba-b8b8-f150676b7e24", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2e826aa7-83ff-43a5-bb2b-823131f15135" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055417Z:924e11dc-0477-4a01-9484-4df2f646c08e", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "date" : "Tue, 19 Jun 2018 05:54:16 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5c091f8a-c7fb-47e6-8f85-01aefc47e8a8", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "924e11dc-0477-4a01-9484-4df2f646c08e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055447Z:82463462-a043-4b72-ab06-72ea378e258d", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Tue, 19 Jun 2018 05:54:46 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "4b24a98a-df01-4dc2-a377-b6afc7f51f85", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "82463462-a043-4b72-ab06-72ea378e258d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055517Z:2022f473-7570-438c-8ff7-a2bc42ca9382", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Tue, 19 Jun 2018 05:55:17 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "5d5f78c6-2e69-452f-a63d-e2f789ddaed4", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2022f473-7570-438c-8ff7-a2bc42ca9382" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055547Z:2d513caf-4ec4-43ae-996a-123854ee3287", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Tue, 19 Jun 2018 05:55:47 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "29c3af9c-70cc-4147-b8e6-4cb0bb4e9b16", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2d513caf-4ec4-43ae-996a-123854ee3287" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055617Z:0cf90a2c-273c-4f78-b95b-45c60e98ac59", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Tue, 19 Jun 2018 05:56:17 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "93f495c8-4188-4e2d-b3db-a5eb358ed0f9", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0cf90a2c-273c-4f78-b95b-45c60e98ac59" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055647Z:74169cb8-37d3-46f5-8a64-97866c3c0043", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Tue, 19 Jun 2018 05:56:47 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "18c9682d-737c-48f6-b4c7-3513ad2188f9", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "74169cb8-37d3-46f5-8a64-97866c3c0043" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055718Z:07b5bd11-f6d0-41f2-bd44-9b2491457f12", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Tue, 19 Jun 2018 05:57:17 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "514e3b38-43b1-4381-b0b9-f10398e3f89a", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "07b5bd11-f6d0-41f2-bd44-9b2491457f12" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055748Z:07fc6b35-cca7-4a22-ab8a-77a1f8299937", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Tue, 19 Jun 2018 05:57:48 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "e93f98ae-ad7f-4ef3-afb1-1f78efb38781", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "07fc6b35-cca7-4a22-ab8a-77a1f8299937" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055818Z:41356b80-fb2a-422c-be96-9f930f1e152f", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "date" : "Tue, 19 Jun 2018 05:58:17 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "d7a94606-b295-47d6-ba71-912671f699d9", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "41356b80-fb2a-422c-be96-9f930f1e152f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055848Z:6bb2310c-9510-42c1-a4ba-a0fd8e709fe0", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "date" : "Tue, 19 Jun 2018 05:58:47 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "3372ea94-cca1-4b2b-a456-e703febcac0a", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6bb2310c-9510-42c1-a4ba-a0fd8e709fe0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055918Z:349139a7-8437-40f7-9ae8-a5738f56fe09", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "date" : "Tue, 19 Jun 2018 05:59:18 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "efbe2cc8-b921-4f28-987e-1bec840c229a", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "349139a7-8437-40f7-9ae8-a5738f56fe09" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "x-ms-routing-request-id" : "WESTUS2:20180619T055948Z:8342596b-e197-4b9d-9209-4cb98e1be36a", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "date" : "Tue, 19 Jun 2018 05:59:48 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "x-content-type-options" : "nosniff", + "expires" : "-1", + "x-ms-request-id" : "46e22931-6917-4bff-8e92-f1d57e85fb18", + "content-length" : "0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8342596b-e197-4b9d-9209-4cb98e1be36a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cache/locations/East%20US/operationresults/1f1b10ed-7599-4041-b920-4d4ac3af8131?api-version=2018-03-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (RedisManagementClient, 2018-03-01)" + }, + "Response" : { + "StatusCode" : "200", + "Body" : "", + "x-ms-routing-request-id" : "WESTUS2:20180619T060019Z:3dfba579-7905-4115-83b0-d5de5998e2f9", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Tue, 19 Jun 2018 06:00:18 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "a8425ff9-8c89-4cb3-b00c-69f45470e89f", + "x-ms-request-id" : "39a2165c-9db4-4024-a828-5ab44fabbe61", "content-length" : "0", - "x-rp-server-mvid" : "c2763d65-4093-4357-9763-afad8545d1f0", + "x-rp-server-mvid" : "c35c1c34-69ff-421b-9bba-d715eda1b2c1", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d6b774ba-ebf8-490a-93c0-f567afb0d26c" + "x-ms-correlation-request-id" : "3dfba579-7905-4115-83b0-d5de5998e2f9" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/redis144994group?api-version=2017-05-10", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/redis906061group?api-version=2017-05-10", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 8.1/6.3 MacAddressHash:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Java:1.7.0_80 (ResourceManagementClient, 2017-05-10)", "Content-Type" : "application/json; charset=utf-8" @@ -2104,20 +3075,20 @@ "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJUzE0NDk5NEdST1VQLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", - "x-ms-routing-request-id" : "WESTUS2:20180328T184243Z:0504b2c2-e1c6-4bf1-a046-d5dbbdf1ae47", - "date" : "Wed, 28 Mar 2018 18:42:42 GMT", + "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJUzkwNjA2MUdST1VQLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "x-ms-routing-request-id" : "WESTUS2:20180619T060020Z:9650116f-1f22-4da5-85ee-9d86e50fef4a", + "date" : "Tue, 19 Jun 2018 06:00:20 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "x-content-type-options" : "nosniff", "expires" : "-1", - "x-ms-request-id" : "0504b2c2-e1c6-4bf1-a046-d5dbbdf1ae47", + "x-ms-request-id" : "9650116f-1f22-4da5-85ee-9d86e50fef4a", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0504b2c2-e1c6-4bf1-a046-d5dbbdf1ae47" + "x-ms-correlation-request-id" : "9650116f-1f22-4da5-85ee-9d86e50fef4a", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999" } } ], - "variables" : [ "144994", "cf50d53d-fa6a-4be4-b2d1-d69fa5124fb9", "71e564bb-ab22-4835-aa50-ef07d3cb9021", "29d1acb8-c843-4123-bbf2-ced6e6895c40", "cac5901f-9edd-41ed-b13b-f0ec78bc8573", "841fe175-e8fa-4036-899d-a855800124fb", "10a85312-7073-47ef-b77c-110993507d5b", "3dfc94b4-13e1-4a93-bd02-035a59cac214", "82af2ee6-27ea-4dbd-b0af-6b47f350b8da", "cb8cba2c-9293-422d-94ab-a9d098680d89", "a9abce10-7c7c-43ac-8d39-369a51dbc0a4", "c8f0bcfe-d4d2-42cd-9805-7d3ad17bc538", "d49a20c4-fbec-4422-82f5-642b6177eae1" ] + "variables" : [ "906061", "9c3087f3-a476-4303-a297-434cd8e93efb", "d2718f74-f196-478b-90ce-5e2291a1197e", "35a12342-0fbd-46d4-967c-7663addc39a5", "717bbc62-b73d-4587-b6b5-fe54320710ee", "b39dbce0-b97f-4f44-8d36-6a17dfe50c30" ] } \ No newline at end of file